UNPKG

nice-ui

Version:

React design system, components, and utilities

20 lines (19 loc) 570 B
import * as React from 'react'; export interface CommandPaletteInputProps { progress?: number; icon?: React.ReactNode; before?: React.ReactNode; value?: string; placeholder?: string; loading?: boolean; disabled?: boolean; children?: React.ReactNode; onChange?: (value: string) => void; onDeleteBefore?: () => void; onKeyUp?: () => void; onKeyDown?: () => void; onClear?: () => void; onComplete?: () => void; onEnter?: () => void; } export declare const CommandPaletteInput: React.FC<CommandPaletteInputProps>;