UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

15 lines (14 loc) 578 B
declare const states: ("active" | "focus" | "disabled" | "hover")[]; export type KendoFloatingActionButtonItemProps = { align?: 'left' | 'right'; text?: string; icon?: string; }; export type KendoFloatingActionButtonItemState = { [K in (typeof states)[number]]?: boolean; }; export declare const FloatingActionButtonItem: { (props: KendoFloatingActionButtonItemProps & KendoFloatingActionButtonItemState & React.HTMLAttributes<HTMLLIElement>): import("react/jsx-runtime").JSX.Element; states: ("active" | "focus" | "disabled" | "hover")[]; }; export {};