react-material-icon-svg
Version:
React material icon jsx version
14 lines (12 loc) • 470 B
JavaScript
import React from 'react';
export default function WifiStrengthAlertOutlineIcon(props) {
return (
<svg
viewBox="0 0 24 24"
{...props}
className={`rmi rmi-wifi-strength-alert-outline ${props.className}`}
>
<path d="M12 3C7.8 3 3.7 4.4.4 7c3.9 4.8 7.8 9.7 11.6 14.5 2.3-2.9 4.7-5.8 7-8.7V9.6l-7 8.7L3.3 7.4C5.9 5.8 8.9 5 12 5c3.1 0 6.1.9 8.7 2.4l-.4.6h2.6c.3-.3.5-.7.8-1-3.4-2.6-7.5-4-11.7-4m9 7v6h2v-6m-2 8v2h2v-2" />
</svg>
);
}