export type BtnType =
  | 'primary'
  | 'secondary'
  | 'accent'
  | 'success'
  | 'warning'
  | 'info'
  | 'ghost'
  | 'error'
  | 'link'

export type Size = 'xs' | 'sm' | 'md' | 'lg'
