flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
16 lines (15 loc) • 594 B
TypeScript
import { FunctionComponent, PropsOf } from '@builder.io/qwik';
type CarouselProps = PropsOf<'div'> & {
noIndicators?: boolean;
noControls?: boolean;
slideAuto?: boolean;
slideInterval?: number;
scrollable?: boolean;
pauseOnHover?: boolean;
onSlideChanged$?: () => void;
};
export declare const Carousel: FunctionComponent<CarouselProps>;
export declare const CarouselSlide: import("@builder.io/qwik").Component<{
align?: string | undefined;
} & import("@builder.io/qwik").HTMLElementAttrs & import("@builder.io/qwik").QwikAttributes<HTMLDivElement>>;
export {};