react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 535 B
JavaScript
import React from 'react';
export default function ChartMultilineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-chart-multiline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M22 6.92L20.59 5.5l-2.85 3.22C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24L13.5 13.5l-4-4L2 17l1.5 1.5 6-6 4 4 4.05-4.57c.75 1.35 1.25 2.9 1.45 4.57h2c-.22-2.32-.95-4.41-2.04-6.16L22 6.92z" />
</svg>
);
}