import * as CSS from "https://esm.sh/csstype@3.1.2"; const Image = ( props: { class: string; src: string; alt?: string; width?: number | string; height?: number | string; style?: CSS.HtmlAttributes; }, ) => { return ( {props.alt} ); }; export default Image;