react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 398 B
JavaScript
import React from 'react';
export default function WifiStrength_4Icon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-wifi-strength-4 ${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 3z" />
</svg>
);
}