forked from github/plane
3197dd484c
* refactor: spreadsheet layout components * refactor: spreadsheet properties * refactor: folder structure * chore: issue property update * chore: spreadsheet layout in the global views * style: quick actions menu * fix: build errors
24 lines
688 B
TypeScript
24 lines
688 B
TypeScript
import { FC } from "react";
|
|
// components
|
|
import { ViewDueDateSelect } from "components/issues";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
onChange: (date: string | null) => void;
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const DueDateColumn: FC<Props> = (props) => {
|
|
const { issue, onChange, disabled } = props;
|
|
|
|
return (
|
|
<div className="flex items-center text-sm h-11 w-full bg-custom-background-100">
|
|
<span className="flex items-center px-4 py-2.5 h-full w-full flex-shrink-0 border-r border-b border-custom-border-100">
|
|
<ViewDueDateSelect issue={issue} onChange={onChange} noBorder disabled={disabled} />
|
|
</span>
|
|
</div>
|
|
);
|
|
};
|