diff --git a/fakemui/icons/types.ts b/fakemui/icons/types.ts new file mode 100644 index 000000000..16630928e --- /dev/null +++ b/fakemui/icons/types.ts @@ -0,0 +1,7 @@ +import { SVGProps } from 'react' + +export interface IconProps extends SVGProps { + size?: number + color?: string + weight?: 'thin' | 'light' | 'regular' | 'bold' | 'fill' | 'duotone' +}