import { SpanBox, VStack } from '../../elements/LayoutPrimitives' type FallbackImageProps = { title: string width: string height: string fontSize: string } export const GridFallbackImage = (props: FallbackImageProps): JSX.Element => { return ( {props.title} ) } export const ListFallbackImage = (props: FallbackImageProps): JSX.Element => { return ( {props.title.substring(0, 3).toLocaleUpperCase()} ) }