import { twMerge } from "tailwind-merge"; import { Button, type ButtonProps } from "../buttons/Button"; export type EmptyProps = { Icon?: any; title?: string; description?: string; primary?: ButtonProps; secondary?: ButtonProps; className?: string; }; export const Empty: React.FC = ({ Icon = undefined, title = undefined, description = "Check back later my friend.", primary, secondary, className }) => (
{Icon && }
{title &&

{title}

}

{description}

{secondary &&
);