react-material-icon-svg
Version:
React material icon jsx version
10 lines (8 loc) • 455 B
JavaScript
import React from 'react';
export default function MathIntegralIcon(props) {
return (
<svg viewBox="0 0 24 24" {...props} className={`rmi rmi-math-integral ${props.className}`}>
<path d="M11.5 19.1c-.2 1.1-.6 1.9-1.3 2.4-.7.5-1.6.6-2.7.4-.4-.1-1.2-.2-1.5-.4l.5-1.5c.3.1.9.3 1.2.3 1.1.2 1.7-.3 1.9-1.5L12 5.2c.2-1.2.7-2 1.4-2.6.7-.5 1.7-.7 2.8-.5.4.1 1.2.2 1.8.5L17.5 4c-.2-.1-.9-.2-1.2-.3-1.3-.2-2 .4-2.3 1.9l-2.5 13.5z" />
</svg>
);
}