import Image from "next/image"; import ClydeAffraid from "assets/images/clyde/affraid.svg"; export const Empty = ({ title, description, button, className, action, }: { title?: string; description?: string; button?: any; className?: string; action?: () => void; }) => { return (
{/* No results, clyde is sad :( */} {title && (

{title}

)} {title && (

{description}

)} {button && (
null} > {button}
)}
); };