UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 720 B
import React, { Component } from 'react'; export default class PillIcon 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-pill-icon ${this.props.className}`}><path d="M4.222 11.293l7.07-7.071a6 6 0 1 1 8.486 8.485l-7.07 7.071a6 6 0 0 1-8.486-8.485zm1.414 1.414A3.998 3.998 0 0 0 4.6 16.571l5.986-5.985 4.242 4.242 3.536-3.535a4 4 0 0 0-5.657-5.657l-7.071 7.071z"/></svg> ) } }