styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 960 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var WiFi = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M13.414 19.412a1.994 1.994 0 000-2.826 1.994 1.994 0 00-2.828-.002 2 2 0 102.828 2.828zm7.071-7.897a1.99 1.99 0 01-1.414-.586c-3.899-3.899-10.243-3.898-14.143 0A2 2 0 012.099 8.1c5.459-5.458 14.341-5.458 19.799 0a2 2 0 01-1.413 3.415zM7.757 15.757a2 2 0 01-1.414-3.414c3.118-3.119 8.194-3.119 11.313 0a2 2 0 01-2.829 2.829 4.005 4.005 0 00-5.657 0 1.99 1.99 0 01-1.413.585z", key: "k0" })));
});
WiFi.displayName = 'WiFi';
export var WiFiDimensions = { height: 24, width: 24 };