react-hook-form-chakra-fields
Version:
A collection of form fields on top of simple and accessible react component library [Chakra UI](https://chakra-ui.com/) and performant form library [React Hook Form](https://react-hook-form.com/), integrated with many other js/ts libraries.
10 lines (9 loc) • 384 B
TypeScript
import { ResponsiveValue } from '@chakra-ui/react';
export interface GridItemProps {
colSpan?: ResponsiveValue<number | 'auto'>;
colStart?: ResponsiveValue<number | 'auto'>;
colEnd?: ResponsiveValue<number | 'auto'>;
rowStart?: ResponsiveValue<number | 'auto'>;
rowEnd?: ResponsiveValue<number | 'auto'>;
rowSpan?: ResponsiveValue<number | 'auto'>;
}