import React from 'react'; import * as LabelPrimitives from '@radix-ui/react-label'; import { cx } from 'lib/utils'; interface InputLabelProps extends React.ComponentPropsWithoutRef { disabled?: boolean; } const InputLabel = React.forwardRef, InputLabelProps>( ({ className, disabled, ...props }, forwardedRef) => ( ) ); InputLabel.displayName = 'InputLabel'; export { InputLabel };