UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 758 B
import React, { Component } from 'react'; export default class PuzzleIcon 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-puzzle-icon ${this.props.className}`}><path d="M20.5 10.998H19v-4a2 2 0 0 0-2-2h-4v-1.5a2.5 2.5 0 1 0-5 0v1.5H4c-1.105 0-1.99.896-1.99 2l-.004 3.8H3.5a2.7 2.7 0 0 1 0 5.4H2.002L2 19.998a2 2 0 0 0 2 2h3.8v-1.5a2.7 2.7 0 0 1 5.4 0v1.5H17a2 2 0 0 0 2-2v-4h1.5a2.5 2.5 0 1 0 0-5z"/></svg> ) } }