UNPKG

react-accessible-form

Version:

React Accessible Form handles makes layout and accessibility easy when writing forms.

8 lines (5 loc) 197 B
import * as React from "react"; export type BoxHTMLProps = React.HTMLAttributes<any> & React.RefAttributes<any>; export type BoxProps<T = {}> = { as?: React.ElementType<T & BoxHTMLProps>; };