import cx from "classnames"; import React from "react"; const CLASS_ROOT = "label"; export interface LabelProps extends React.LabelHTMLAttributes { htmlFor: string; className?: string; children?: React.ReactNode; } const Label: React.FC = ({ htmlFor, className, children, ...other }) => ( ); Label.displayName = "Label"; export { Label };