UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 861 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Radar = 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: "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" }))); }); Radar.displayName = 'Radar'; export var RadarDimensions = { height: 24, width: 24 };