migration wip
This commit is contained in:
46
components/cards/index.ts
Normal file
46
components/cards/index.ts
Normal file
@@ -0,0 +1,46 @@
|
||||
// Card Components Export
|
||||
// Base Card Component
|
||||
export { BaseCard, type BaseCardProps, type CardSize, type CardLayout } from './BaseCard';
|
||||
|
||||
// Blog Card Components
|
||||
export {
|
||||
BlogCard,
|
||||
BlogCardVertical,
|
||||
BlogCardHorizontal,
|
||||
BlogCardSmall,
|
||||
BlogCardLarge,
|
||||
type BlogCardProps
|
||||
} from './BlogCard';
|
||||
|
||||
// Product Card Components
|
||||
export {
|
||||
ProductCard,
|
||||
ProductCardVertical,
|
||||
ProductCardHorizontal,
|
||||
ProductCardSmall,
|
||||
ProductCardLarge,
|
||||
type ProductCardProps
|
||||
} from './ProductCard';
|
||||
|
||||
// Category Card Components
|
||||
export {
|
||||
CategoryCard,
|
||||
CategoryCardVertical,
|
||||
CategoryCardHorizontal,
|
||||
CategoryCardSmall,
|
||||
CategoryCardLarge,
|
||||
CategoryCardIcon,
|
||||
type CategoryCardProps
|
||||
} from './CategoryCard';
|
||||
|
||||
// Card Grid Components
|
||||
export {
|
||||
CardGrid,
|
||||
CardGrid2,
|
||||
CardGrid3,
|
||||
CardGrid4,
|
||||
CardGridAuto,
|
||||
type CardGridProps,
|
||||
type GridColumns,
|
||||
type GridGap
|
||||
} from './CardGrid';
|
||||
Reference in New Issue
Block a user