import React, { forwardRef, LabelHTMLAttributes } from 'react' import PropTypes from 'prop-types' import classNames from 'classnames' export interface CFormLabelProps extends LabelHTMLAttributes { /** * A string of all className you want applied to the component. */ className?: string /** * A string of all className you want to be applied to the component, and override standard className value. */ customClassName?: string } export const CFormLabel = forwardRef( ({ children, className, customClassName, ...rest }, ref) => { return ( ) } ) CFormLabel.propTypes = { children: PropTypes.node, className: PropTypes.string, customClassName: PropTypes.string, } CFormLabel.displayName = 'CFormLabel'