UNPKG

@gluestack-ui/form-control

Version:

A universal headless form-control component for React Native, Next.js & React

8 lines (7 loc) 310 B
import React, { forwardRef } from 'react'; const FormControlErrorText = (StyledFormControlErrorText) => forwardRef(({ children, ...props }, ref) => { return (<StyledFormControlErrorText ref={ref} {...props}> {children} </StyledFormControlErrorText>); }); export default FormControlErrorText;