import React, { forwardRef, HTMLAttributes } from 'react' import PropTypes from 'prop-types' import classNames from 'classnames' export interface CHeaderDividerProps extends HTMLAttributes { /** * A string of all className you want applied to the component. */ className?: string } export const CHeaderDivider = forwardRef( ({ className, ...rest }, ref) => { return
} ) CHeaderDivider.propTypes = { className: PropTypes.string, } CHeaderDivider.displayName = 'CHeaderDivider'