import React from 'react'; import { Icon } from '../icon.component.js'; import { type IconProps } from '../icon.types.js'; export function HamburgerMenuIcon({ 'aria-label': ariaLabel = 'Hamburger Menu', copyrightYear = '2025', ...props }: IconProps) { return ( ); }