import { FC } from "react"; import Image from "next/image"; import { useTheme } from "next-themes"; import { Button } from "@plane/ui"; type TEstimateEmptyScreen = { onButtonClick: () => void; }; export const EstimateEmptyScreen: FC = (props) => { // props const { onButtonClick } = props; const { resolvedTheme } = useTheme(); const emptyScreenImage = `/empty-state/project-settings/estimates-${ resolvedTheme === "light" ? "light" : "dark" }.webp`; return (
Empty estimate image

No estimate systems yet

Create a set of estimates to communicate the amount of work per issue.

); };