@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
14 lines (13 loc) • 414 B
TypeScript
export declare const FIELDSET_CLASSNAME = "k-form-fieldset";
export type KendoFieldsetProps = {
legend?: null | string;
layout?: null | string;
cols?: number;
gapX?: number;
gapY?: number;
};
export declare const Fieldset: {
(props: KendoFieldsetProps & React.HTMLAttributes<HTMLFieldSetElement>): import("react/jsx-runtime").JSX.Element;
className: string;
};
export default Fieldset;