grommet
Version:
focus on the essential experience
18 lines (14 loc) • 484 B
TypeScript
import * as React from "react";
import { A11yTitleType, AlignSelfType, GridAreaType, MarginType } from "../../utils";
export interface CarouselProps {
a11yTitle?: A11yTitleType;
alignSelf?: AlignSelfType;
controls?: boolean | "arrows" | "selectors";
gridArea?: GridAreaType;
margin?: MarginType;
fill?: boolean;
play?: number;
initialChild?: number;
}
declare const Carousel: React.ComponentClass<CarouselProps & JSX.IntrinsicElements['div']>;
export { Carousel };