import SvgIcon from '@/components/SvgIcon' const Cover = ({ isRounded, imageUrl, onClick, }: { imageUrl: string isRounded?: boolean onClick?: () => void }) => { const [isError, setIsError] = useState(false) return (
{/* Neon shadow */}
{/* Cover */} {isError ? (
) : ( setIsError(true)} /> )} {/* Play button */}
) } export default Cover