@brizy/ui
Version:
React elements in Brizy style
14 lines (13 loc) • 380 B
TypeScript
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;