Design system.
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.
 
 
 

12 lines
379 B

  1. export const AVAILABLE_TYPES = ['submit', 'reset', 'button'] as const;
  2. export type Type = typeof AVAILABLE_TYPES[number];
  3. export const AVAILABLE_VARIANTS = ['bare', 'filled', 'outline'] as const;
  4. export type Variant = typeof AVAILABLE_VARIANTS[number];
  5. export const AVAILABLE_SIZES = ['small', 'medium', 'large'] as const;
  6. export type Size = typeof AVAILABLE_SIZES[number];