UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 loc) 1.6 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconWorld', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--world', 'IconWorld'); return h('svg', _mergeJSXProps([{ attrs: { xmlns: 'http://www.w3.org/2000/svg', role: 'presentation', focusable: 'false', fill: 'currentColor', viewBox: '0 0 16 16', }, }, ctx.data]), [h('path', { attrs: { d: 'M8 1.28a6.72 6.72 0 1 0 0 13.44A6.72 6.72 0 0 0 8 1.28Zm4.594 3.876c.207.346.377.713.508 1.094l-1.724 1.986V6.154l-1.12-.175a.386.386 0 0 1-.263-.175.543.543 0 0 1-.122-.43.368.368 0 0 1 .385-.244l2.336.026Zm-7-1.995v1.811l-1.487.814-.105.376-.875-.463A5.46 5.46 0 0 1 5.594 3.16Zm.455 5.495h.621l.587.49-.43 1.479a2.423 2.423 0 0 1-1.39-1.453l.612-.516ZM8 13.407A5.408 5.408 0 0 1 2.593 8c-.001-.35.034-.699.105-1.041l1.312.69c.122.228.289.427.49.587l-.446.376v.324c0 .096.114 2.345 3.019 3.194l.63.183 1.041-3.63-1.619-1.34H5.743a.569.569 0 0 1-.604-.367l.088-.306 1.68-.875V2.75h-.184A5.548 5.548 0 0 1 8 2.592a5.399 5.399 0 0 1 3.5 1.252h-1.242A1.636 1.636 0 0 0 8.595 5.12a1.811 1.811 0 0 0 .777 1.916c.198.123.419.204.65.237l.07 2.625 1.505.157 1.802-2.187a.963.963 0 0 1 0 .157A5.407 5.407 0 0 1 8 13.407Z', }, })]); }, };