import React, { forwardRef } from 'react'; const FormControlLabelText = (StyledFormControlLabelText: any) => forwardRef(({ children, ...props }: any, ref?: any) => { return ( {children} ); }); export default FormControlLabelText;