react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 538 B
JavaScript
import React from 'react';
export default function WeatherHurricaneIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-weather-hurricane ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M15 6.79c1.86 1.07 3 3.06 3 5.21C18 22 6 22 6 22c1.25-.94 2.38-2.05 3.34-3.29a.99.99 0 0 0-.34-1.5C7.14 16.14 6 14.15 6 12 6 2 18 2 18 2c-1.25.94-2.38 2.05-3.34 3.29a.99.99 0 0 0 .34 1.5M12 14a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2z" />
</svg>
);
}