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