react-material-icon-svg
Version:
React material icon jsx version
10 lines (8 loc) • 452 B
JavaScript
import React from 'react';
export default function InvertColorsIcon(props) {
return (
<svg viewBox="0 0 24 24" {...props} className={`rmi rmi-invert-colors ${props.className}`}>
<path d="M12 19.58c-1.6 0-3.11-.62-4.24-1.75A5.951 5.951 0 0 1 6 13.58c0-1.58.62-3.11 1.76-4.24L12 5.1m5.66 2.83L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31A7.98 7.98 0 0 0 12 21.58c2.05 0 4.1-.78 5.66-2.34 3.12-3.12 3.12-8.19 0-11.31z" />
</svg>
);
}