react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 667 B
JavaScript
import React from 'react';
export default function ChartTimelineVariantIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-chart-timeline-variant ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M3 14l.5.07L8.07 9.5a1.95 1.95 0 0 1 .52-1.91c.78-.79 2.04-.79 2.82 0 .53.52.7 1.26.52 1.91l2.57 2.57.5-.07c.18 0 .35 0 .5.07l3.57-3.57C19 8.35 19 8.18 19 8a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2c-.18 0-.35 0-.5-.07l-3.57 3.57c.07.15.07.32.07.5a2 2 0 0 1-2 2 2 2 0 0 1-2-2l.07-.5-2.57-2.57c-.32.07-.68.07-1 0L4.93 15.5 5 16a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" />
</svg>
);
}