import type { JSX } from "solid-js"; type ImageProps = JSX.IntrinsicElements["img"] & { src: string; alt: string }; export default function Image(props: ImageProps) { const isDecorationImage = props.alt === ""; return ( {isDecorationImage ); }