@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
29 lines (26 loc) • 1.38 kB
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconShare = {
name: 'IconShare',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--share', 'IconShare');
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: 'M12.322 9.077a2.371 2.371 0 0 0-1.907.962L6.04 8.377a2.625 2.625 0 0 0 0-.377 2.625 2.625 0 0 0 0-.376l4.375-1.662a2.371 2.371 0 1 0-.481-1.418 1.68 1.68 0 0 0 0 .193L5.462 6.434a2.362 2.362 0 0 0-1.75-.822 2.389 2.389 0 1 0 0 4.777 2.362 2.362 0 0 0 1.75-.822l4.498 1.697a1.68 1.68 0 0 0 0 .193 2.39 2.39 0 1 0 2.389-2.38h-.027Zm0-5.61a1.076 1.076 0 1 1 0 2.153 1.076 1.076 0 0 1 0-2.152Zm-8.645 5.61a1.076 1.076 0 1 1 0-2.153 1.076 1.076 0 0 1 0 2.153Zm8.646 3.456a1.076 1.076 0 1 1 .002-2.153 1.076 1.076 0 0 1-.002 2.153Z',
},
})]);
},
};
export { IconShare as default };