This commit is contained in:
Rogelio
2025-10-23 04:36:37 +00:00
commit 9cf2a7f223
1334 changed files with 525004 additions and 0 deletions

8
dist/Card/Card.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import React from 'react';
export interface CardProps {
children: React.ReactNode;
className?: string;
padding?: 'none' | 'sm' | 'md' | 'lg';
}
export declare const Card: React.FC<CardProps>;
export default Card;