ADD new frontend

This commit is contained in:
Urtzi Alfaro
2025-08-28 10:41:04 +02:00
parent 9c247a5f99
commit 0fd273cfce
492 changed files with 114979 additions and 1632 deletions

View File

@@ -0,0 +1,31 @@
// UI Components - Design System
export { default as Button } from './Button';
export { default as Input } from './Input';
export { default as Card, CardHeader, CardBody, CardFooter } from './Card';
export { default as Modal } from './Modal';
export { default as Table } from './Table';
export { default as Badge } from './Badge';
export { default as Avatar } from './Avatar';
export { default as Tooltip } from './Tooltip';
export { default as Select } from './Select';
export { default as DatePicker } from './DatePicker';
export { ThemeToggle } from './ThemeToggle';
export { ProgressBar } from './ProgressBar';
export { StatusIndicator } from './StatusIndicator';
export { ListItem } from './ListItem';
// Export types
export type { ButtonProps } from './Button';
export type { InputProps } from './Input';
export type { CardProps, CardHeaderProps, CardBodyProps, CardFooterProps } from './Card';
export type { ModalProps } from './Modal';
export type { TableProps, TableColumn, TableRow } from './Table';
export type { BadgeProps } from './Badge';
export type { AvatarProps } from './Avatar';
export type { TooltipProps } from './Tooltip';
export type { SelectProps, SelectOption } from './Select';
export type { DatePickerProps } from './DatePicker';
export type { ThemeToggleProps } from './ThemeToggle';
export type { ProgressBarProps } from './ProgressBar';
export type { StatusIndicatorProps } from './StatusIndicator';
export type { ListItemProps } from './ListItem';