"use client"; import { FC } from "react"; import { useTheme } from "next-themes"; import { useTranslation } from "@plane/i18n"; // public images import { DetailedEmptyState } from "../empty-state"; type TEstimateEmptyScreen = { onButtonClick: () => void; }; export const EstimateEmptyScreen: FC = (props) => { // props const { onButtonClick } = props; const { resolvedTheme } = useTheme(); const { t } = useTranslation(); const resolvedPath = `/empty-state/project-settings/estimates-${resolvedTheme === "light" ? "light" : "dark"}.png`; return ( ); };