Files
klz-cables.com/components/cards/index.ts
2025-12-29 18:18:48 +01:00

46 lines
910 B
TypeScript

// 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';