UNPKG

styled-icons

Version:

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

14 lines (13 loc) 959 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Compass = 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 5c3.859.001 7 3.142 7 7.001 0 3.858-3.141 6.998-7 6.999-3.859 0-7-3.14-7-6.999s3.141-7 7-7.001m0-2a9 9 0 000 18 9 9 0 000-18zm4.182 4.819a.498.498 0 00-.491-.127L9.74 9.398a.498.498 0 00-.342.343l-1.707 5.951a.496.496 0 00.481.637l.138-.02 5.95-1.708a.498.498 0 00.342-.343l1.707-5.949a.498.498 0 00-.127-.49zM8.9 15.101l1.383-4.817 3.434 3.435L8.9 15.101z", key: "k0" }))); }); Compass.displayName = 'Compass'; export var CompassDimensions = { height: 24, width: 24 };