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