react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 819 B
JSX
import React, { Component } from 'react';
export default class BloggerIcon 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-blogger-icon ${this.props.className}`}><path d="M14 12.998H9.95a1 1 0 1 0 0 2H14a1 1 0 1 0 0-2zm-4.05-3h2.6a1 1 0 1 0 0-2h-2.6a1 1 0 1 0 0 2zm6.05-1v1a1 1 0 0 0 1 1 1 1 0 0 1 1 1v3a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3v-7a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3m4-6H4a1.99 1.99 0 0 0-1.99 2l-.01 16a2 2 0 0 0 2 2h16c1.103 0 2-.896 2-2v-16a2 2 0 0 0-2-2z"/></svg>
)
}
}