UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

32 lines (31 loc) 743 B
export declare const BASE_SIZES: { readonly SMALL: "small"; readonly MEDIUM: "medium"; readonly LARGE: "large"; }; export declare const BASE_SIZES_WITH_NONE: { SMALL: "small"; MEDIUM: "medium"; LARGE: "large"; NONE: string; }; export declare const SIZES: { readonly SMALL: "small"; readonly MEDIUM: "medium"; readonly LARGE: "large"; readonly XXS: "xxs"; readonly XS: "xs"; }; export declare enum BaseSizes { SMALL = "small", MEDIUM = "medium", LARGE = "large" } export declare enum Sizes { XXS = "xxs", XS = "xs", SMALL = "small", MEDIUM = "medium", LARGE = "large" } export type SIZES_VALUES = (typeof SIZES)[keyof typeof SIZES];