plane/web/components/issues/issue-layouts/properties/state.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
718 B
TypeScript

import { observer } from "mobx-react-lite";
// components
import { StateSelect } from "components/states";
// types
import { IState } from "types";
export interface IIssuePropertyState {
value: IState;
onChange: (state: IState) => void;
states: IState[] | null;
disabled?: boolean;
hideDropdownArrow?: boolean;
}
export const IssuePropertyState: React.FC<IIssuePropertyState> = observer((props) => {
const { value, onChange, states, disabled, hideDropdownArrow = false } = props;
return (
<StateSelect
value={value}
onChange={onChange}
states={states ?? undefined}
buttonClassName="h-5"
disabled={disabled}
hideDropdownArrow={hideDropdownArrow}
/>
);
});