I would like to use an SVG in an Image component.
When I create the following I get the errors ImageMetaData not defined and
Type '{ src: ImageMetadata; }' is not assignable to type 'IntrinsicAttributes & number'.
Type '{ src: ImageMetadata; }' is not assignable to type 'number'.ts(2322)
---
import Logo from '../../public/logo_light.svg';
export interface Props {
src: ImageMetadata;
}
---
<Image src={Logo} />
How do I use SVG's with the Image tag?