Files
phoenix/src/lib/components/ui/image-carousel/index.ts
2025-11-29 22:27:37 +01:00

10 lines
204 B
TypeScript

import ImageCarousel from './ImageCarousel.svelte'
type ImageCarouselItem = {
image: string
alt: string
aspect?: '1:1' | '16:9' | '9:16' | '4:3'
}
export { ImageCarousel, type ImageCarouselItem }