@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
27 lines (26 loc) • 823 B
TypeScript
export type KendoLayoutProps = {
gap?: string;
orientation?: null | 'horizontal' | 'vertical';
alignItems?: null | 'start' | 'center' | 'end' | 'stretch';
justifyContent?: null | 'start' | 'center' | 'end' | 'stretch';
justifyItems?: null | 'start' | 'center' | 'end' | 'stretch';
wrap?: boolean;
};
export declare const Layout: {
(props: KendoLayoutProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {
orientation: string[];
alignItems: string[];
justifyContent: string[];
justifyItems: string[];
};
defaultOptions: {
orientation: null;
alignItems: null;
justifyContent: null;
justifyItems: null;
wrap: boolean;
};
};
export default Layout;