@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
31 lines (28 loc) • 1.25 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 IconBagFilled = {
name: 'IconBagFilled',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--bagFilled', 'IconBagFilled');
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: {
'fill-rule': 'evenodd',
d: 'M11.369 4.43h1.785v-.009l.744 8.864c.034.42-.105.831-.394 1.146a1.575 1.575 0 0 1-1.164.508H3.66a1.6 1.6 0 0 1-1.164-.499 1.49 1.49 0 0 1-.402-1.137l.647-8.847h1.89V2.111L5.673 1.07h4.655l1.04 1.041V4.43ZM10.02 2.418H5.98v2.038l4.042-.017V2.418ZM8.5 12.33l-.123-1.312h2.634l.123 1.312H8.498Z',
'clip-rule': 'evenodd',
},
})]);
},
};
export { IconBagFilled as default };