import { Box, Image } from '@chakra-ui/react'; import noCoverFallbackImageURL from '~/assets/no-cover.svg'; interface AlbumImageProps { url?: string; name?: string; } export function AlbumImage({ name, url }: AlbumImageProps) { const coverAlternativeText = name ? `${name} 的专辑封面` : '专辑封面'; return ( {coverAlternativeText} ); }