UNPKG

@justeattakeaway/pie-icons-vue

Version:
31 lines (29 loc) 1.61 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconStarCircleLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--starCircleLarge', 'IconStarCircleLarge'); 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: 'M16 3.75C9.245 3.75 3.75 9.245 3.75 16S9.245 28.25 16 28.25 28.25 22.755 28.25 16 22.755 3.75 16 3.75m0 22.75c-5.792 0-10.5-4.707-10.5-10.5 0-5.792 4.716-10.5 10.5-10.5S26.5 10.208 26.5 16c0 5.793-4.707 10.5-10.5 10.5', }, }), h('path', { attrs: { d: 'm21.653 13.62-3.36-.49-1.505-3.045c-.15-.298-.464-.446-.788-.446s-.639.149-.787.446l-1.505 3.045-3.36.49a.873.873 0 0 0-.49 1.488l2.432 2.37-.577 3.343a.88.88 0 0 0 .35.858.871.871 0 0 0 .928.061l3-1.575 3.002 1.575a.87.87 0 0 0 .927-.061.88.88 0 0 0 .35-.858l-.578-3.342 2.433-2.371a.873.873 0 0 0-.49-1.488zm-3.168 2.608-.656.638.157.91.271 1.602-1.434-.753-.814-.429-.814.429-1.435.753.271-1.602.158-.91-.656-.639-1.164-1.128 1.601-.236.91-.132.411-.822.718-1.453.717 1.453.412.822.91.132 1.6.236z', }, })]); }, };