UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 762 B
import React, { Component } from 'react'; export default class RibbonIcon 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-ribbon-icon ${this.props.className}`}><path d="M13.414 19.311l3.171 3.171 1.414-1.414-3.171-3.17m.707-6.365l-.001.001-3.535 3.534-3.534-3.534h-.001a5 5 0 1 1 7.071 0zM16.898 13a7 7 0 1 0-11.899-5c0 1.957.807 3.727 2.103 4.996L7.1 13l3.485 3.484-4.586 4.585 1.414 1.414L16.898 13z"/></svg> ) } }