UNPKG

@orfeas126/box-ui-elements

Version:
36 lines (31 loc) 1.36 kB
// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import { bdlBoxBlue } from '../../styles/variables'; import type { Icon } from '../flowTypes'; const IconGlobeTinycon = ({ className = '', color = bdlBoxBlue, height = 16, title, width = 16 }: Icon) => ( <AccessibleSVG className={`icon-globe ${className}`} height={height} title={title} viewBox="0 0 16 16" width={width} > <g fill="none"> <path className="fill-color" d="M8 .5A7.484 7.484 0 0 0 .5 8c0 4.155 3.345 7.5 7.5 7.5 4.155 0 7.5-3.345 7.5-7.5C15.5 3.845 12.155.5 8 .5z" stroke={color} /> <path className="fill-color" d="M12 12.061c-.107-.28-.512-1.308-1.268-1.883-.187-.142-.718-.217-1.592-.226V8.365c0-.794-.578-.794-1.019-.794H4.594V5.983H6.11c.44 0 .757.065.757-.397V4.395h1.515c.772 0 1.841-.309 1.841-1.9-3.778-.89-6.391.344-7.84 3.703L5.407 9.38l-.07.282a1.482 1.482 0 0 0 1.53 1.835l.586 2.487c1.21-.034 2.087-.166 2.633-.397.464-.196 1.101-.705 1.913-1.526z" fill={color} stroke={color} strokeWidth=".766" strokeLinejoin="round" /> </g> </AccessibleSVG> ); export default IconGlobeTinycon;