interface Props { avif: string webp: string size?: number alt?: string } export default (props: Props) => { return ( <> {props.alt} ) }