UNPKG

@littlespoon/icons

Version:
18 lines 717 B
/// <reference types="react" /> export interface HamburgerMenuIconProps extends React.SVGAttributes<SVGElement> { /** * The fill of the component. Defaults to null */ fill?: string; /** * The stroke of the component. Defaults to black. */ stroke?: string; /** * The size of the component. Defaults to "small". */ size?: 'xsmall' | 'small' | 'medium' | 'large'; } export default function HamburgerMenuIcon({ fill, stroke, size, ...other }: HamburgerMenuIconProps): React.ReactElement; export declare const HamburgerMenuIconBase: import("styled-components").StyledComponent<"svg", any, HamburgerMenuIconProps, never>; //# sourceMappingURL=HamburgerMenuIcon.d.ts.map