styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 984 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Radar = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M12 20c3.86 0 7-3.141 7-7s-3.14-7-7.003-7C8.139 6 5 9.141 5 13s3.14 7 7 7zM11 8.102V10a1 1 0 102 0V8.102A5.013 5.013 0 0116.899 12H15a1 1 0 100 2h1.899A5.013 5.013 0 0113 17.898V16a1 1 0 10-2 0v1.898A5.013 5.013 0 017.101 14H9a1 1 0 100-2H7.101A5.012 5.012 0 0111 8.102z", key: "k0" })));
});
exports.Radar.displayName = 'Radar';
exports.RadarDimensions = { height: 24, width: 24 };
;