react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 757 B
JSX
import React, { Component } from 'react';
export default class TumblrIcon 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-tumblr-icon ${this.props.className}`}><path d="M16 10.998h-3v3.9c0 .733.143 1.1 1.1 1.1H16v3s-1.029.1-2.1.1c-2.647 0-3.9-1.623-3.9-3.4v-4.7H8v-2.8c2.407-.2 2.618-2.042 2.8-3.2H13v3h3m4-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>
)
}
}