react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 363 B
JavaScript
import React from 'react';
export default function FlashAutoIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-flash-auto ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M16.85 7.65L18 4l1.15 3.65M19 2h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9M3 2v12h3v9l7-12H9l4-9H3z" />
</svg>
);
}