UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 853 B
import React, { Component } from 'react'; export default class MediumIcon 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-medium-icon ${this.props.className}`}><path d="M21.929 6.616l-6.04 9.856-4.317-7.046 3.437-5.585a.694.694 0 0 1 .77-.292l6.15 3.067zM22 19.782c0 .57-.496.784-1.108.478l-4.708-2.355L22 8.415v11.368zm-13.012.155c0 .568-.415.825-.923.57l-5.511-2.75c-.305-.152-.554-.555-.554-.896V4.14c0-.454.332-.66.738-.456L8.705 6.66l.283.463v12.813zm6.298-2.48L10 14.814v-6l5.286 8.643z"/></svg> ) } }