import { SELECT_CREATE_OPTION_VALUE } from "./constants"; import { SelectOption } from "./types"; export function getCreatableOption( inputValue: string | undefined, ) { return { label: inputValue, value: SELECT_CREATE_OPTION_VALUE, } as T; }