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

import { observer } from "mobx-react-lite";
// components
import { LabelSelect } from "components/project";
// types
import { IIssueLabels } from "types";
export interface IIssuePropertyLabels {
value: string[];
onChange: (data: string[]) => void;
labels: IIssueLabels[] | null;
disabled?: boolean;
hideDropdownArrow?: boolean;
}
export const IssuePropertyLabels: React.FC<IIssuePropertyLabels> = observer((props) => {
const { value, onChange, labels, disabled, hideDropdownArrow = false } = props;
return (
<LabelSelect
value={value}
onChange={onChange}
labels={labels ?? undefined}
buttonClassName="h-5"
disabled={disabled}
hideDropdownArrow={hideDropdownArrow}
/>
);
});