import IVButton, { IVButtonProps } from '~/components/IVButton' export default function EmptyState({ title, children, actions = [], Icon, }: { title: string children?: React.ReactNode actions?: IVButtonProps[] Icon?: React.ComponentType> }) { return (
{Icon && }

{title}

{children}
{actions.map((button, key) => ( ))}
) }