UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

36 lines (35 loc) 1.29 kB
export declare const BOTTOM_NAV_CLASSNAME = "k-bottom-nav"; declare const states: "disabled"[]; declare const options: { fillMode: ("flat" | "solid")[]; themeColor: ("error" | "inverse" | "success" | "dark" | "light" | "primary" | "secondary" | "tertiary" | "info" | "warning")[]; }; export type KendoBottomNavOptions = { fillMode?: (typeof options.fillMode)[number] | null; themeColor?: (typeof options.themeColor)[number] | null; }; export type KendoBottomNavProps = KendoBottomNavOptions & { flow?: string; border?: boolean; dir?: 'ltr' | 'rtl'; positionMode?: 'fixed' | 'sticky' | 'absolute'; }; export type KendoBottomNavState = { [K in (typeof states)[number]]?: boolean; }; export declare const BottomNav: { (props: KendoBottomNavProps & KendoBottomNavState & React.HTMLAttributes<HTMLElement>): import("react/jsx-runtime").JSX.Element; states: "disabled"[]; options: { fillMode: ("flat" | "solid")[]; themeColor: ("error" | "inverse" | "success" | "dark" | "light" | "primary" | "secondary" | "tertiary" | "info" | "warning")[]; }; className: string; defaultOptions: { fillMode: "flat"; themeColor: "primary"; flow: string; border: boolean; }; }; export default BottomNav;