import type { ClassValue } from "corvos/deps/clsx.ts"; import type { Props as ImageProps } from "corvos/plugins/images.ts"; import { Image } from "corvos/plugins/images.ts"; export type Props = Omit & { "src"?: string; "img-class"?: ClassValue; }; export const ContentImage = ({ src, "img-class": imgClass, ...props }: Props) => ( );