UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

14 lines (13 loc) 508 B
import { KendoComponent } from '../_types/component'; export declare const DROPZONE_CLASSNAME = "k-external-dropzone"; declare const states: ("disabled" | "hover")[]; export type KendoDropzoneProps = { icon?: string; hint?: string | boolean; note?: string; }; export type KendoDropzoneState = { [K in (typeof states)[number]]?: boolean; }; export declare const Dropzone: KendoComponent<KendoDropzoneProps & KendoDropzoneState & React.HTMLAttributes<HTMLDivElement>>; export default Dropzone;