@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
33 lines (31 loc) • 1.43 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: 'IconCopyFilledLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--copyFilledLarge', 'IconCopyFilledLarge');
return h('svg', _mergeJSXProps([{
attrs: {
xmlns: 'http://www.w3.org/2000/svg',
role: 'presentation',
focusable: 'false',
fill: 'currentColor',
viewBox: '0 0 32 32',
},
}, ctx.data]), [h('path', {
attrs: {
d: 'M12.596 2.079 25.844 4.37a2.424 2.424 0 0 1 1.977 2.81l-3.07 17.63a2.388 2.388 0 0 1-.946 1.54V9.57a4.183 4.183 0 0 0-4.174-4.183H9.561l.227-1.33A2.38 2.38 0 0 1 11.632 2.1a2.45 2.45 0 0 1 .964-.02Z',
},
}), h('path', {
attrs: {
'fill-rule': 'evenodd',
d: 'M6.183 7.136h13.44a2.433 2.433 0 0 1 2.432 2.433v17.885a2.432 2.432 0 0 1-2.433 2.432H6.182a2.432 2.432 0 0 1-2.432-2.432V9.569a2.433 2.433 0 0 1 2.433-2.433Zm2.344 6.93h8.75v1.75h-8.75v-1.75Zm8.75 3.78h-8.75v1.75h8.75v-1.75Zm-8.75 3.771h8.75v1.75h-8.75v-1.75Z',
'clip-rule': 'evenodd',
},
})]);
},
};