import type { FC, HTMLAttributes } from 'react';
import styles from './hamburger-icon.module.scss';
export type HamburgerIconProps = Omit<
HTMLAttributes,
'children'
>;
/**
* HamburgerIcon component
*
* Render a Hamburger icon.
*/
export const HamburgerIcon: FC = ({
className = '',
...props
}) => {
const wrapperClass = `${styles.wrapper} ${className}`;
return (
);
};