UNPKG

@justeattakeaway/pie-icons-vue

Version:
29 lines (27 loc) 1.77 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconOfferStarFilled', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--offerStarFilled', 'IconOfferStarFilled'); 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: 'M13.871 6.355a2.5 2.5 0 0 1-.472-.586q-.106-.392-.088-.796a2.47 2.47 0 0 0-.516-1.75 2.47 2.47 0 0 0-1.75-.517 2.6 2.6 0 0 1-.796-.087 2.3 2.3 0 0 1-.578-.473A2.45 2.45 0 0 0 8 1.22a2.45 2.45 0 0 0-1.654.875q-.25.283-.577.472-.392.106-.796.088a2.42 2.42 0 0 0-1.75.516 2.47 2.47 0 0 0-.517 1.75c.012.268-.018.537-.087.796a2.5 2.5 0 0 1-.473.587A2.42 2.42 0 0 0 1.22 8a2.42 2.42 0 0 0 .875 1.645c.186.17.346.368.472.586q.106.392.088.797a2.47 2.47 0 0 0 .516 1.75c.496.389 1.122.574 1.75.516.268-.012.537.018.796.087q.327.19.578.473a2.45 2.45 0 0 0 1.654.875 2.45 2.45 0 0 0 1.653-.875q.25-.284.578-.473c.26-.07.528-.099.796-.087a2.42 2.42 0 0 0 1.75-.517c.39-.495.574-1.122.516-1.75a2.6 2.6 0 0 1 .088-.796q.191-.329.472-.586A2.42 2.42 0 0 0 14.676 8a2.42 2.42 0 0 0-.805-1.645M10.73 8A4.82 4.82 0 0 0 8 10.73 4.82 4.82 0 0 0 5.27 8 4.82 4.82 0 0 0 8 5.27 4.82 4.82 0 0 0 10.73 8', 'clip-rule': 'evenodd', }, })]); }, };