import React from "react"; import { cn } from "@eloquent/styles"; import { LabelHelperTextProps, RootHelperTextProps } from "./helperText.props"; import { helperTextVariants } from "./variants"; const {root, label} = helperTextVariants() const RootHelperText = React.forwardRef( function RootHelperText({className, children, ...props}, ref){ return(
{children}
) } ) const LabelHelperText = React.forwardRef( function LabelHelperText({className, children, ...props}, ref){ return( {children} ) } ) export const HelperText = { Root: RootHelperText, Label: LabelHelperText }