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