react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 715 B
JSX
import React, { Component } from 'react';
export default class PaletteAdvancedIcon 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-palette-advanced-icon ${this.props.className}`}><path d="M22 22H10v-2h12v2zM2 22v-2h7v2H2zm16-4v-8h4v8h-4zm0-15h4v6h-4V3zM2 18V3h14v15H2zm7-3.438c1.655 0 3-1.345 3-3 0-2-3-5.374-3-5.374s-3 3.375-3 5.375c0 1.654 1.345 3 3 3z"/></svg>
)
}
}