import { isLocalImage } from "@lib/string.ts"; export function Image( props: { class: string; src: string; width?: number; height?: number }, ) { if (isLocalImage(props.src)) { } return (
); }