import clsx from 'clsx'; import { CProps } from '../props'; interface LabelProps extends CProps.Label { text?: string; } function Label({ text, className, ...restProps }: LabelProps) { if (!text) { return null; } if (restProps.htmlFor) { return ( ); } else { return ( {text} ); } } export default Label;