import { IconSpeakerphone, IconSearch, IconActivity, IconFileText } from '@tabler/icons-react' import type { Icon } from '@tabler/icons-react' interface Props { title?: string message?: string actionLabel?: string onAction?: () => void icon?: Icon } export default function EmptyState({ title = 'Nothing here yet', message = 'Be the first to share your thoughts and ideas', actionLabel = 'Share feedback', onAction, icon: CustomIcon, }: Props) { const Icon = CustomIcon || IconSpeakerphone return (
{message}
{onAction && ( )}