@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
15 lines (14 loc) • 651 B
TypeScript
import { KendoComponent } from '../_types/component';
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: KendoComponent<KendoAppbarProps & React.HTMLAttributes<HTMLDivElement>>;
export default Appbar;