UNPKG

styled-hook-form

Version:

React form library for styled-components based on grommet and react-hook-form

5 lines (4 loc) 227 B
import { TextInputProps } from "grommet"; export declare type NumericBoxProps = TextInputProps & Omit<JSX.IntrinsicElements["input"], "onSelect" | "size" | "placeholder" | "onChange"> & { onChange: (value: any) => void; };