react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 782 B
JSX
import React, { Component } from 'react';
export default class FlattrIcon 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-flattr-icon ${this.props.className}`}><path d="M21 9v6a6 6 0 0 1-6 6H4.415l6.652-6.652c.31-.311.622-.622.777-.597.156.025.156.386.156.746V17h2a3 3 0 0 0 3-3V8.415l4-4V9zM3 15V9a6 6 0 0 1 6-6h10.585l-6.652 6.652c-.31.311-.622.622-.777.597C12 10.224 12 9.863 12 9.503V7h-2a3 3 0 0 0-3 3v5.585l-4 4V15z"/></svg>
)
}
}