import React from 'react'; import classnames from 'classnames'; import { Text } from '../text'; import type { TextProps } from '../text'; import { FontWeight, TextVariant, Display, AlignItems, } from '../../../helpers/constants/design-system'; import type { PolymorphicRef } from '../box'; import { LabelProps, LabelComponent } from './label.types'; export const Label: LabelComponent = React.forwardRef( ( { htmlFor, className, children, ...props }: LabelProps, ref?: PolymorphicRef, ) => { return ( )} > {children} ); }, );