UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 loc) 1.25 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconStationery', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--stationery', 'IconStationery'); 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: 'm13.258 3.143-1.411.314L9.65 6.262H9.13V2.864h-.236v-1.15a.561.561 0 0 0-.557-.557h-.262a.561.561 0 0 0-.557.557v1.159h-.235v3.398h-.74L4.545 1.322l-2.073.976 1.603 3.955h-1.08v3.92h.853v2.632c0 .522.192 1.019.566 1.385.375.374.863.575 1.386.575h4.469c1.08 0 1.96-.88 1.96-1.952v-2.64h.845v-3.92h-1.21l1.367-1.742.017-1.368h.009Zm-2.326 9.67a.658.658 0 0 1-.654.654H5.81a.653.653 0 0 1-.653-.654v-2.64h5.785v2.64h-.01ZM4.32 8.867V7.56h7.457v1.307H4.32Z', }, })]); }, };