react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 678 B
JSX
import React, { Component } from 'react';
export default class ContrastIcon 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-contrast-icon ${this.props.className}`}><path d="M4.38 20.902a2.005 2.005 0 0 1-1.277-1.267L19.635 3.103c.599.2 1.072.677 1.267 1.278L4.381 20.902zM20 16v2h-7v-2h7zM3 6h3V3h2v3h3v2H8v3H6V8H3V6z"/></svg>
)
}
}