UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 756 B
import React, { Component } from 'react'; export default class PocketIcon 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-pocket-icon ${this.props.className}`}><path d="M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12V4.5A2.5 2.5 0 0 1 4.5 2h15A2.5 2.5 0 0 1 22 4.5V12zm-6.116-3.755l-3.88 3.88-3.886-3.886a1.5 1.5 0 0 0-2.12 2.121l4.936 4.956a1.5 1.5 0 0 0 2.122 0l4.95-4.95a1.5 1.5 0 1 0-2.122-2.12z"/></svg> ) } }