UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 728 B
import React, { Component } from 'react'; export default class HamburgerIcon extends Component { static defaultProps = { className: '' }; constructor(props) { super(props); } render() { return ( <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-hamburger-icon ${this.props.className}`}><path d="M2 16h20v2c0 1.108-.892 2-2 2H4c-1.108 0-2-.892-2-2v-2zM6 4h12c2.216 0 4 1.784 4 4v2H2V8c0-2.216 1.784-4 4-4zm-2 7h11l2 2 2-2h1c1.108 0 2 .892 2 2s-.892 2-2 2H4c-1.108 0-2-.892-2-2s.892-2 2-2z"/></svg> ) } }