lucid-ui
Version:
A UI component library from AppNexus.
23 lines • 1.1 kB
JavaScript
import _ from 'lodash';
import React from 'react';
import Icon, { propTypes as iconPropTypes } from '../Icon';
import { lucidClassNames } from '../../../util/style-helpers';
import { omitProps } from '../../../util/component-types';
const cx = lucidClassNames.bind('&-HamburgerMenuIcon');
export const HamburgerMenuIcon = ({ className, ...passThroughs }) => {
return (React.createElement(Icon, Object.assign({}, omitProps(passThroughs, undefined, _.keys(HamburgerMenuIcon.propTypes), false), _.pick(passThroughs, _.keys(iconPropTypes)), { className: cx('&', className), width: 16, height: 16, viewBox: '0 0 16 16' }),
React.createElement("path", { d: 'M.5 8h15M.5 13.5h15M.5 2.5h15' })));
};
HamburgerMenuIcon.displayName = 'HamburgerMenuIcon';
HamburgerMenuIcon.peek = {
description: `
A hamburger menu icon.
`,
categories: ['visual design', 'icons'],
extend: 'Icon',
madeFrom: ['Icon'],
};
HamburgerMenuIcon.propTypes = iconPropTypes;
HamburgerMenuIcon.defaultProps = Icon.defaultProps;
export default HamburgerMenuIcon;
//# sourceMappingURL=HamburgerMenuIcon.js.map