doly-icons
Version:
React icon component based on Bootstrap Icons
8 lines (7 loc) • 755 B
JavaScript
import { __assign } from "tslib";
import React from 'react';
import IconBase from '../icon/IconBase';
var Compass = function (props) { return (React.createElement(IconBase, __assign({ "aria-label": "compass" }, props, { renderChild: function (childProps) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "currentColor", viewBox: "0 0 16 16" }, childProps),
React.createElement("path", { d: "M8 16.016a7.5 7.5 0 0 0 1.962-14.74A1 1 0 0 0 9 0H7a1 1 0 0 0-.962 1.276A7.5 7.5 0 0 0 8 16.016m6.5-7.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0" }),
React.createElement("path", { d: "m6.94 7.44 4.95-2.83-2.83 4.95-4.949 2.83 2.828-4.95z" }))); } }))); };
export default Compass;