import { cx } from 'class-variance-authority' import { MaterialIcon } from '../Icons/MaterialIcon' import styles from './imageFallback.module.css' interface ImageFallbackProps extends React.HTMLAttributes { width?: string height?: string } export default function ImageFallback({ width = '100%', height = '100%', className, ...props }: ImageFallbackProps) { return (
) }