UNPKG

@brizy/ui

Version:
14 lines (13 loc) 380 B
import { ReactElement } from "react"; export interface Props { onChange: (e: string) => void; value?: string; disabled?: boolean; placeholder?: string; size?: "small" | "middle"; theme?: "dark" | "light"; onBlur?: () => void; onFocus?: () => void; onPressEnter?: () => void; } export declare const ToolbarInput: (props: Props) => ReactElement;