@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
29 lines (26 loc) • 1.42 kB
JavaScript
import _mergeJSXProps from './_virtual/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconPaintbrush = {
name: 'IconPaintbrush',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--paintbrush', 'IconPaintbrush');
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.186 1.683h-2.511l-.875 1.12-.237-1.12H1.805l.945 5.25v.682a1.97 1.97 0 0 0 2.003 1.969H6.25l.096.087-.35 2.415A2.11 2.11 0 0 0 8 14.493c.338-.004.671-.088.97-.245h.08a2.12 2.12 0 0 0 1.11-2.162L9.81 9.62h1.436a1.97 1.97 0 0 0 2.004-2.004v-.691zm-9.45 1.312.35 1.899h1.339l-.36-1.899h3.413l.35 1.899h.945l1.532-1.899h.315l-.587 3.255h-8.05l-.595-3.255zm7.192 4.62a.665.665 0 0 1-.656.656H9.881a1.38 1.38 0 0 0-1.365 1.234v.079l.376 2.625a.8.8 0 0 1-.411.814h-.079a.787.787 0 0 1-1.146-.814l.385-2.625v-.088A1.426 1.426 0 0 0 6.25 8.271H4.753a.656.656 0 0 1-.656-.656v-.087h7.875z',
},
})]);
},
};
export { IconPaintbrush as default };