@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
26 lines (25 loc) • 654 B
TypeScript
export type KendoScrollViewProps = {
mode?: "light" | "normal" | "dark";
views?: number;
currentView?: number;
animate?: boolean;
arrows?: boolean;
pager?: boolean;
rtl?: boolean;
};
export declare const ScrollView: {
(props: KendoScrollViewProps & React.HtmlHTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {};
className: string;
defaultOptions: {
mode: string;
views: number;
currentView: number;
animate: boolean;
arrows: boolean;
pager: boolean;
rtl: boolean;
};
};
export default ScrollView;