@gluestack-ui/themed
Version:
A universal themed components for React Native, Next.js & React
21 lines (20 loc) • 761 B
JavaScript
import { createFormControl } from '@gluestack-ui/form-control';
import { Root, Error, ErrorText, ErrorIcon, Label, LabelText, LabelAstrick, Helper, HelperText, } from './styled-components';
export const FormControl = createFormControl({
Root,
Error,
ErrorText,
ErrorIcon,
Label,
LabelText,
LabelAstrick,
Helper,
HelperText,
});
export const FormControlError = FormControl.Error;
export const FormControlErrorText = FormControl.Error.Text;
export const FormControlErrorIcon = FormControl.Error.Icon;
export const FormControlLabel = FormControl.Label;
export const FormControlLabelText = FormControl.Label.Text;
export const FormControlHelper = FormControl.Helper;
export const FormControlHelperText = FormControl.Helper.Text;