import React from "react"; // ui import { IssueEstimateSelect } from "components/issues/select"; // icons import { BanknotesIcon } from "@heroicons/react/24/outline"; // types import { UserAuth } from "types"; // constants type Props = { value: number; onChange: (val: number) => void; userAuth: UserAuth; }; export const SidebarEstimateSelect: React.FC = ({ value, onChange, userAuth }) => { const isNotAllowed = userAuth.isGuest || userAuth.isViewer; return (

Estimate

); };