react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 850 B
JSX
import React, { Component } from 'react';
export default class ScaleBalanceIcon 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-scale-balance-icon ${this.props.className}`}><path d="M12 3a3 3 0 0 0-2.824 2H3v2h1.945L2 14c-.472 2 1 3 3.5 3s4.06-1 3.5-3L6.055 7h3.119A3 3 0 0 0 11 8.826V20H2v2h20v-2h-9V8.824A3 3 0 0 0 14.824 7h3.121L15 14c-.472 2 1 3 3.5 3s4.06-1 3.5-3l-2.945-7H21V5h-6.174A3 3 0 0 0 12 3zm0 2a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm-6.5 5.25L7 14H4l1.5-3.75zm13 0L20 14h-3l1.5-3.75z"/></svg>
)
}
}