@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
31 lines (29 loc) • 1.41 kB
JavaScript
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props';
import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue';
export default {
name: 'IconTranslateFilled',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--translateFilled', 'IconTranslateFilled');
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.219A6.781 6.781 0 1 0 14.781 8 6.79 6.79 0 0 0 8 1.219m-.122 8.794a8 8 0 0 1-1.374-.876 7.6 7.6 0 0 1-2.126 1.243l-.324-.875a6.4 6.4 0 0 0 1.793-1.006 6 6 0 0 1-.77-1.007l.753-.463q.291.469.665.875.263-.308.481-.648.291-.477.473-1.006H3.993v-.875h2.09v-.56h.876v.56h2.109v.875h-.692a5.1 5.1 0 0 1-.621 1.418q-.272.436-.612.822.503.403 1.076.7zm3.692 1.33-.07-.29-.184-.48H9.41l-.298.77h-.875l.123-.29.28-.708.21-.516.131-.306.63-1.628.28-.682h.971l1.654 4.094z',
},
}), h('path', {
attrs: {
d: 'm10.021 9.006-.21.543-.114.289h1.287l-.648-1.654z',
},
})]);
},
};