import { Stack, Text } from "@mantine/core"; import { type TablerIcon } from "@tabler/icons-react"; import { ReactNode } from "react"; import classes from "./empty-state.module.css"; type EmptyStateProps = { icon: TablerIcon; title: string; description?: string; action?: ReactNode; }; export function EmptyState({ icon: Icon, title, description, action }: EmptyStateProps) { return (