react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 512 B
JavaScript
import React from 'react';
export default function WifiStrength_3Icon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-wifi-strength-3 ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 3C7.79 3 3.7 4.41.38 7 4.41 12.06 7.89 16.37 12 21.5c4.08-5.08 8.24-10.26 11.65-14.5C20.32 4.41 16.22 3 12 3m0 2c3.07 0 6.09.86 8.71 2.45l-1.94 2.43C17.26 9 14.88 8 12 8 9 8 6.68 9 5.21 9.84l-1.94-2.4C5.91 5.85 8.93 5 12 5z" />
</svg>
);
}