UNPKG

styled-icons

Version:

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

14 lines (13 loc) 754 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 16 16" }, props, { ref: ref }), React.createElement("path", { d: "M8.5 16a.5.5 0 01-.5-.5V8H.5a.5.5 0 01-.211-.953l15-7a.5.5 0 01.665.665l-7 15a.5.5 0 01-.453.289zM2.754 7H8.5a.5.5 0 01.5.5v5.746l5.465-11.712L2.753 6.999z", key: "k0" }))); }); Compass.displayName = 'Compass'; export var CompassDimensions = { height: 16, width: 16 };