Creating a regular <img /> throws the error:
ts(2739) (property) JSX.HTMLElementTags.img: JSX.ImgHTMLAttributes<HTMLImageElement>```
```js
interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
alt?: string;
crossorigin?: HTMLCrossorigin;
decoding?: "sync" | "async" | "auto";
height?: number | string;
ismap?: boolean;
isMap?: boolean;
loading?: "eager" | "lazy";
referrerpolicy?: HTMLReferrerPolicy;
referrerPolicy?: HTMLReferrerPolicy;
sizes?: string;
src?: string;
srcset?: string;
srcSet?: string;
usemap?: string;
useMap?: string;
width?: number | string;
crossOrigin?: HTMLCrossorigin;
elementtiming: string;
fetchpriority: "high" | "low" | "auto";
}```
Should those not be optional?