react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 822 B
JSX
import React, { Component } from 'react';
export default class SourceMergeIcon 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-source-merge-icon ${this.props.className}`}><path d="M7 3a3 3 0 0 1 1.043 5.814c.54 4.991 5.04 5.955 7.144 6.141a3.001 3.001 0 1 1-.023 2.027c-4.252-.186-5.725-1.788-7.164-3.59v1.779a3.001 3.001 0 1 1-2 0V8.829A3.001 3.001 0 0 1 7 3zm0 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm0 12a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm11-2a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>
)
}
}