@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
29 lines (26 loc) • 1.14 kB
JavaScript
import _mergeJSXProps from './_virtual/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconSend = {
name: 'IconSend',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--send', 'IconSend');
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: 'M14.457 1.525a.94.94 0 0 0-.665-.271.7.7 0 0 0-.297.052L1.814 5.13a.936.936 0 0 0 0 1.75l2.047.875v4.454h4.305L9.13 14.3a.94.94 0 0 0 .83.516h.045a.95.95 0 0 0 .83-.62L14.65 2.557a.9.9 0 0 0 .061-.342.92.92 0 0 0-.254-.69M3.257 6.04l8.322-2.73-4.585 4.27zm1.9 4.804V8.219l.778.324.726.332.263.578.638 1.4zm4.75 1.96L7.94 8.499l4.873-4.541z',
},
})]);
},
};
export { IconSend as default };