@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
18 lines (17 loc) • 581 B
TypeScript
declare const states: ("focus" | "disabled" | "selected")[];
export type KendoBottomNavItemProps = {
icon?: string;
text?: string;
link?: string;
};
export type KendoBottomNavItemState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const BottomNavItem: {
(props: KendoBottomNavItemProps & KendoBottomNavItemState & React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
states: ("focus" | "disabled" | "selected")[];
options: {};
className: string;
defaultOptions: {};
};
export default BottomNavItem;