mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
13 lines
390 B
TypeScript
13 lines
390 B
TypeScript
|
|
type TProjectTemplateDropdownSize = "xs" | "sm";
|
||
|
|
|
||
|
|
export type TProjectTemplateSelect = {
|
||
|
|
disabled?: boolean;
|
||
|
|
size?: TProjectTemplateDropdownSize;
|
||
|
|
placeholder?: string;
|
||
|
|
dropDownContainerClassName?: string;
|
||
|
|
handleModalClose: () => void;
|
||
|
|
};
|
||
|
|
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||
|
|
export const ProjectTemplateSelect = (props: TProjectTemplateSelect) => <></>;
|