UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

22 lines (21 loc) 885 B
export declare const APPBAR_CLASSNAME = "k-appbar"; declare const options: { themeColor: ("base" | "error" | "inverse" | "inherit" | "success" | "dark" | "light" | "primary" | "secondary" | "tertiary" | "info" | "warning")[]; }; export type KendoAppbarOptions = { themeColor?: (typeof options.themeColor)[number] | null; }; export type KendoAppbarProps = KendoAppbarOptions & { positionMode?: 'static' | 'sticky' | 'fixed'; position?: 'top' | 'bottom'; }; export declare const Appbar: { (props: KendoAppbarProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: any[]; options: { themeColor: ("base" | "error" | "inverse" | "inherit" | "success" | "dark" | "light" | "primary" | "secondary" | "tertiary" | "info" | "warning")[]; }; className: string; defaultOptions: {}; }; export default Appbar;