@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
7 lines • 957 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import styles from '@patternfly/react-styles/css/components/Button/button.mjs';
import { css } from '@patternfly/react-styles';
// Because this is such a specific icon that requires being wrapped in a pf-v[current version]-c-button element,
// we don't want to export this to consumers nor include it in the react-icons package as a custom icon.
export const hamburgerIcon = (_jsxs("svg", { viewBox: "0 0 10 10", className: css(styles.buttonHamburgerIcon, 'pf-v6-svg'), width: "1em", height: "1em", children: [_jsx("path", { className: css(styles.buttonHamburgerIconTop), d: "M1,1 L9,1" }), _jsx("path", { className: css(styles.buttonHamburgerIconMiddle), d: "M1,5 L9,5" }), _jsx("path", { className: css(styles.buttonHamburgerIconArrow), d: "M1,5 L1,5 L1,5" }), _jsx("path", { className: css(styles.buttonHamburgerIconBottom), d: "M9,9 L1,9" })] }));
//# sourceMappingURL=hamburgerIcon.js.map