Skip to content
Snippets Groups Projects
iconTypes.ts 480 B
Newer Older
export type IconTypes =
  | 'chevron-right'
  | 'chevron-left'
  | 'chevron-up'
  | 'chevron-down'
  | 'plus'
  | 'arrow'
  | 'dots'
  | 'admin'
  | 'export'
  | 'info'
  | 'legend'
  | 'page'
mateuszmiko's avatar
mateuszmiko committed
  | 'plugin'
Adrian Orłów's avatar
Adrian Orłów committed
  | 'location'
  | 'magnifier-zoom-in'
  | 'magnifier-zoom-out'
  | 'three-dots'
  | 'clear'
  | 'user'
  | 'manage-user'
  | 'download';

export type IconComponentType = ({ className }: { className: string }) => JSX.Element;