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;

11
dist/Card/Card.js vendored Normal file
View File

@@ -0,0 +1,11 @@
import { jsx as _jsx } from "react/jsx-runtime";
export const Card = ({ children, className = '', padding = 'md' }) => {
const paddingClasses = {
none: '',
sm: 'p-3',
md: 'p-6',
lg: 'p-8'
};
return (_jsx("div", { className: `bg-white rounded-xl shadow-lg border border-gray-200 ${paddingClasses[padding]} ${className}`, children: children }));
};
export default Card;

2
dist/Card/index.d.ts vendored Normal file
View File

@@ -0,0 +1,2 @@
export { default } from './Card';
export type { CardProps } from './Card';

1
dist/Card/index.js vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from './Card';