import Stack from "@mui/material/Stack"; import { Button } from "@/Components/v2/Inputs"; import { useTheme } from "@mui/material/styles"; import { useTranslation } from "react-i18next"; import { useNavigate } from "react-router"; export const HeaderCreate = ({ label, isLoading, path, }: { label?: string; isLoading: boolean; path: string; }) => { const theme = useTheme(); const { t } = useTranslation(); const navigate = useNavigate(); return ( ); };