import { Card, Typography } from "@mui/material"; import { useTranslation } from "../../contexts/I18nContext"; type ActionsEmptyStateProps = { title: string; description: string; }; export const ActionsEmptyState = ({ title, description, }: ActionsEmptyStateProps) => { const { t } = useTranslation(); return ( {title} {description} ); };