@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
41 lines (37 loc) • 1.02 kB
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import Icon40PropValues from '../_defaultIconPropValues.ts';
const Menu = (props) => {
const {
width = Icon40PropValues.width,
height = Icon40PropValues.height,
stroke = Icon40PropValues.stroke,
...restProps
} = props;
delete restProps.fill;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 32 32"
width={width}
height={height}
{...restProps}
fill="none"
>
<path
d="M6.6665 23.6666H25.3332M6.6665 16H25.3332M6.6665 8.33331H25.3332"
stroke={stroke}
strokeWidth={3}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
Menu.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
fill: PropTypes.string,
stroke: PropTypes.string,
};
export default Menu;