I'm getting this issue:
Property 'fr' is missing in type '{ icon: IconifyIcon; }' but required in type 'Pick<IconProps, "string" | "children" | "className" | "style" | "display" | "overflow" | "visibility" | "order" | "color" | "width" | "height" | "fontFamily" | "fontSize" | ... 465 more ... | "vAlign">'. TS2741 (Typescript)
These are the packages that I've been using:
"@iconify/icons-eva": "^1.1.0"
"@iconify/icons-ic": "^1.1.15"
"@iconify/react": "^3.1.0"
And here is the sample code:
import { Icon } from '@iconify/react';
import plusFill from '@iconify/icons-eva/plus-fill';
const App = () => {
return (
<Icon icon={plusFill} />
)
}