You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
258 B

1 month ago
  1. export declare const componentSizes: readonly ["", "default", "small", "large"];
  2. export type ComponentSize = typeof componentSizes[number];
  3. export declare const componentSizeMap: {
  4. readonly large: 40;
  5. readonly default: 32;
  6. readonly small: 24;
  7. };