UNPKG

styled-icons

Version:

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

14 lines (13 loc) 1.13 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Globe = 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: "M11 20H7a1 1 0 100 2h10a1 1 0 100-2h-4v-1.23a8.925 8.925 0 004.363-2.406A8.942 8.942 0 0020 10a8.93 8.93 0 00-1.968-5.619l.675-.673a1.001 1.001 0 00-1.414-1.416l-2.052 2.049.708.708C17.271 6.371 18 8.13 18 10s-.729 3.627-2.051 4.949S12.87 17 11 17s-3.627-.729-4.949-2.051a.999.999 0 10-1.414 1.414A8.938 8.938 0 0011 19v1zm0-16c1.657 0 3.157.672 4.243 1.757A5.985 5.985 0 0117 10a5.985 5.985 0 01-1.757 4.242A5.982 5.982 0 0111 16a5.98 5.98 0 01-4.242-1.757C5.673 13.157 5.002 11.657 5.002 10s.671-3.157 1.756-4.243A5.98 5.98 0 0111 4z", key: "k0" }))); }); Globe.displayName = 'Globe'; export var GlobeDimensions = { height: 24, width: 24 };