@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
14 lines (13 loc) • 475 B
TypeScript
export declare const FILE_BOX_WRAPPER_CLASSNAME = "k-file-box-wrapper";
export type KendoFileBoxWrapper = {
layout?: "horizontal" | "wrap" | "vertical";
scrollingPosition?: "start" | "end" | "both";
};
export declare const FileBoxWrapper: {
(props: KendoFileBoxWrapper & React.HTMLAttributes<HTMLUListElement>): import("react/jsx-runtime").JSX.Element;
className: string;
defaultOptions: {
layout: string;
};
};
export default FileBoxWrapper;