@jk-core/components
Version:
components for jk
16 lines (15 loc) • 591 B
TypeScript
import { ReactNode } from 'react';
interface CarouselProps {
/**
* 캐러셀에 표시할 슬라이드 요소들입니다.
* 일반적으로 이미지나 기타 콘텐츠 요소들을 자식으로 전달합니다.
*/
children: ReactNode[];
autoPlay?: boolean;
autoPlayInterval?: number;
showIndicators?: boolean;
showNavigation?: boolean;
className?: string;
}
export default function Carousel({ children, autoPlay, autoPlayInterval, showIndicators, showNavigation, className, }: CarouselProps): import("react/jsx-runtime").JSX.Element;
export {};