UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 650 B
import React, { Component } from 'react'; export default class DoubanIcon 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-douban-icon ${this.props.className}`}><g><path d="M20 6H4V4h16v2zm0 12v2H4v-2h3.33l-1.07-4H5V8h14v6h-1.26l-1.07 4H20zM7 12h10v-2H7v2zm2.4 6h5.2l1.07-4H8.33l1.07 4z"/></g></svg> ) } }