UNPKG

504 BTypeScriptView Raw
1export const Size: {
2 LARGE: string;
3 SMALL: string;
4 XSMALL: string;
5};
6
7export const SIZE_MAP: {
8 large: string;
9 medium: string;
10 small: string;
11 xsmall: string;
12 lg: string;
13 md: string;
14 sm: string;
15 xs: string;
16};
17
18export const DEVICE_SIZES: string[];
19
20export const State: {
21 SUCCESS: string;
22 WARNING: string;
23 DANGER: string;
24 INFO: string;
25};
26
27export const Style: {
28 DEFAULT: string;
29 PRIMARY: string;
30 LINK: string;
31 INVERSE: string;
32};