import { cn } from "#/utils/utils"; import { formControlInlineInputClassName } from "#/utils/form-control-classes"; interface DropdownInputProps { placeholder?: string; isDisabled: boolean; getInputProps: (props?: object) => object; /** When false, placeholder hint keeps upright type (e.g. backend selector). */ italicPlaceholder?: boolean; fitContent?: boolean; } export function DropdownInput({ placeholder, isDisabled, getInputProps, italicPlaceholder = true, fitContent = false, }: DropdownInputProps) { return ( ); }