import Drawer, { DrawerProps } from '../Drawer/Drawer'; import classNames from 'classnames'; import useHelpDrawerAnalytics from './useHelpDrawerAnalytics'; import { AnalyticsOverrideProps } from '../analytics'; export interface HelpDrawerProps extends DrawerProps, AnalyticsOverrideProps {} /** * For information about how and when to use this component, * [refer to its full documentation page](https://design.cms.gov/components/drawer/). */ export const HelpDrawer = (props: HelpDrawerProps) => { const { analytics, analyticsLabelOverride, onAnalyticsEvent, children, className, ...others } = props; const headingRef = useHelpDrawerAnalytics(props); return ( {children} ); }; export default HelpDrawer;