UNPKG

@brizy/ui

Version:
15 lines (14 loc) 384 B
import { ReactElement } from "react"; export interface Props { onChange: (e: number) => void; value?: number; disabled?: boolean; min?: number; max?: number; step?: number | string; placeholder?: string; onBlur?: () => void; onFocus?: () => void; onPressEnter?: () => void; } export declare const ToolbarNumber: (props: Props) => ReactElement;