Single SVG import works fine. When creating an array of SVG, typescript cannot infer the type. ```javascript import Svg1 from './svg_1.svg'; import Svg2 from './svg_2.svg'; const svgs = [Svg1 , Svg2 ]; // type {}[] const svgs = [Svg1 , Svg2 ] as React.FC<React.SVGProps<SVGElement>>[] // only this method works
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by Ragna13377 and has received 1 comments.