@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
34 lines (33 loc) • 829 B
TypeScript
export declare const FILE_BOX_CLASSNAME = "k-file-box";
export type KendoFileBoxProps = {
icon?: string;
name?: string;
size?: null | string;
status?: string;
deleted?: boolean;
removeButton?: boolean;
showButton?: boolean;
};
export declare const FileBox: {
(props: KendoFileBoxProps & React.HTMLAttributes<HTMLLIElement>): import("react/jsx-runtime").JSX.Element;
states: "selected"[];
options: {};
className: string;
defaultOptions: {
icon: string;
name: string;
size: string;
showButton: string;
};
moduleName: string;
folderName: string;
ariaSpec: {
selector: string;
rules: {
selector: string;
attribute: string;
usage: string;
}[];
};
};
export default FileBox;