Icon.d.ts 214 B

123456789
  1. import { FunctionComponent } from 'react';
  2. export type IconProps = {
  3. size?: number,
  4. filled?: boolean,
  5. color?: 'primary' | 'secondary' | 'default'
  6. }
  7. export type IconComponent = FunctionComponent<IconProps>;