UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 loc) 1.44 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconSocialAppleCircleFilled', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--appleCircleFilled', 'IconSocialAppleCircleFilled'); 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.175A6.781 6.781 0 1 0 14.78 8 6.79 6.79 0 0 0 8 1.175m0 4.541a1.67 1.67 0 0 1 1.312-1.409h.158c.032.267-.013.538-.131.779a1.48 1.48 0 0 1-1.06.875c-.34.088-.332.096-.28-.245m3.019 4.034a.5.5 0 0 0 0 .096 4.3 4.3 0 0 1-.954 1.557 1.024 1.024 0 0 1-1.234.175 1.29 1.29 0 0 0-1.312 0c-.193.096-.407.14-.622.132a.88.88 0 0 1-.656-.368 4.54 4.54 0 0 1-1.26-3.167c.005-.328.074-.652.201-.954a1.75 1.75 0 0 1 2.407-.919.93.93 0 0 0 .927 0q.225-.106.464-.175a1.94 1.94 0 0 1 1.155.123c.287.108.528.312.682.577-.105.097-.21.175-.306.272a2 2 0 0 0-.289.323 1.64 1.64 0 0 0 .228 1.917c.15.178.347.311.569.385z', }, })]); }, };