@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
14 lines • 782 B
TypeScript
import { CarouselProps as DefaultCarouselProps } from 'antd';
import { CarouselRef } from 'antd/lib/carousel';
import React from 'react';
export type CarouselProps = Pick<DefaultCarouselProps, 'slidesToShow' | 'autoplay' | 'autoplaySpeed' | 'draggable' | 'infinite' | 'speed' | 'beforeChange' | 'children' | 'effect'> & {
dots?: boolean;
controlsSize?: 'large' | 'small';
};
declare const Carousel: React.ForwardRefExoticComponent<Pick<DefaultCarouselProps, "children" | "draggable" | "slidesToShow" | "autoplay" | "autoplaySpeed" | "infinite" | "speed" | "beforeChange" | "effect"> & {
dots?: boolean;
controlsSize?: "large" | "small";
} & React.RefAttributes<CarouselRef>>;
export { Carousel, };
export type { CarouselRef, };
//# sourceMappingURL=carousel.d.ts.map