react-material-icon-svg
Version:
React material icon jsx version
14 lines (12 loc) • 323 B
JavaScript
import React from 'react';
export default function FlashTriangleOutlineIcon(props) {
return (
<svg
viewBox="0 0 24 24"
{...props}
className={`rmi rmi-flash-triangle-outline ${props.className}`}
>
<path d="M12 2 1 21h22M12 6l7.5 13h-15m9.5-5h-1.5l1.5-3h-4v4h1v3l3-4z" />
</svg>
);
}