plane/web/components/issues/issue-layouts/properties/estimates.tsx
Aaryan Khandelwal a49f00bd39
chore: refactor and beautify issue properties (#2539)
* chore: update all issue property components

* style: issue properties
2023-10-25 19:47:58 +05:30

29 lines
801 B
TypeScript

import { observer } from "mobx-react-lite";
// components
import { EstimateSelect } from "components/estimates";
// types
import { IEstimatePoint } from "types";
export interface IIssuePropertyEstimates {
value: number | null;
onChange: (value: number | null) => void;
estimatePoints: IEstimatePoint[] | null;
disabled?: boolean;
hideDropdownArrow?: boolean;
}
export const IssuePropertyEstimates: React.FC<IIssuePropertyEstimates> = observer((props) => {
const { value, onChange, estimatePoints, disabled, hideDropdownArrow = false } = props;
return (
<EstimateSelect
value={value}
onChange={onChange}
estimatePoints={estimatePoints ?? undefined}
buttonClassName="h-5"
disabled={disabled}
hideDropdownArrow={hideDropdownArrow}
/>
);
});