@chief-editor/ui
Version:
UI Component for chief editor
10 lines (9 loc) • 399 B
TypeScript
import { UnionOmit } from '@co-hooks/util';
import { CSSProperties } from 'react';
import { IButtonProps } from '../button';
import { IDropdownOptions } from './useDropdown';
export declare type IDropdownInputProps = UnionOmit<IDropdownOptions, IButtonProps> & {
buttonStyle?: CSSProperties;
value?: string;
};
export declare function DropdownInput(props: IDropdownInputProps): JSX.Element;