react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 412 B
JavaScript
import React from 'react';
export default function ChartBellCurveCumulativeIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-chart-bell-curve-cumulative ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M4 19v1h18v2H2V2h2v15c3 0 6-2 8.1-5.6 3-5 6.3-7.4 9.9-7.4v2c-2.8 0-5.5 2.1-8.1 6.5C11.3 16.6 7.7 19 4 19z" />
</svg>
);
}