migration wip
This commit is contained in:
35
components/ui/index.ts
Normal file
35
components/ui/index.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
// UI Components Export
|
||||
export { Button, type ButtonProps, type ButtonVariant, type ButtonSize } from './Button';
|
||||
export {
|
||||
Card,
|
||||
CardHeader,
|
||||
CardBody,
|
||||
CardFooter,
|
||||
CardImage,
|
||||
type CardProps,
|
||||
type CardHeaderProps,
|
||||
type CardBodyProps,
|
||||
type CardFooterProps,
|
||||
type CardImageProps,
|
||||
type CardVariant
|
||||
} from './Card';
|
||||
export { Container, type ContainerProps } from './Container';
|
||||
export { Grid, GridItem, type GridProps, type GridItemProps, type GridCols, type GridGap } from './Grid';
|
||||
export {
|
||||
Badge,
|
||||
BadgeGroup,
|
||||
type BadgeProps,
|
||||
type BadgeVariant,
|
||||
type BadgeSize,
|
||||
type BadgeGroupProps
|
||||
} from './Badge';
|
||||
export {
|
||||
Loading,
|
||||
LoadingButton,
|
||||
LoadingSkeleton,
|
||||
type LoadingProps,
|
||||
type LoadingSize,
|
||||
type LoadingVariant,
|
||||
type LoadingButtonProps,
|
||||
type LoadingSkeletonProps
|
||||
} from './Loading';
|
||||
Reference in New Issue
Block a user