UNPKG

styled-icons

Version:

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

15 lines (14 loc) 890 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Compasses = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }), React.createElement("path", { d: "M11 4.126V2h2v2.126a4.002 4.002 0 011.803 6.728l6.063 10.502-1.732 1-6.063-10.501a4.004 4.004 0 01-2.142 0L4.866 22.356l-1.732-1 6.063-10.502A4.002 4.002 0 0111 4.126zM12 9a1 1 0 100-2 1 1 0 000 2z", key: "k1" }))); }); Compasses.displayName = 'Compasses'; export var CompassesDimensions = { height: 24, width: 24 };