react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 763 B
JSX
import React, { Component } from 'react';
export default class InvertColorsIcon 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-invert-colors-icon ${this.props.className}`}><path d="M12 19.583a5.955 5.955 0 0 1-4.243-1.758A5.956 5.956 0 0 1 6 13.583c0-1.602.624-3.109 1.758-4.242L12 5.098m5.656 2.828L12 2.27v.001L6.342 7.926a7.999 7.999 0 0 0 0 11.314A7.97 7.97 0 0 0 12 21.583a8 8 0 0 0 5.657-13.657z"/></svg>
)
}
}