UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 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: 'IconKeyLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--keyLarge', 'IconKeyLarge'); 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: 'M10.75 8.125a2.625 2.625 0 1 0 0 5.25 2.625 2.625 0 0 0 0-5.25m0 3.5a.874.874 0 1 1 0-1.748.874.874 0 0 1 0 1.748m9.083 1.496a.99.99 0 0 1-.167-1.137c.079-.158.149-.315.219-.464a2.7 2.7 0 0 0-.551-3.036L14.583 3.67a2.72 2.72 0 0 0-3.072-.542 17.23 17.23 0 0 0-8.4 8.496 2.71 2.71 0 0 0 .551 3.036L8.414 19.5a2.69 2.69 0 0 0 3.062.543c.219-.105.429-.21.63-.324a.955.955 0 0 1 1.111.157l2.18 2.249 1.863-.297.359.358-.368 2.328.875.919 2.249-.604.551.56-.455 1.837 1.864 1.899h6.79v-6.554zm7.542 14.254h-4.288l-.665-.683.456-1.837-1.978-1.969-1.697.438.28-1.75-1.61-1.628-1.873.28-1.54-1.601a2.625 2.625 0 0 0-3.168-.473l-.568.28a.92.92 0 0 1-1.068-.192l-4.751-4.769a.99.99 0 0 1-.193-1.094 15.43 15.43 0 0 1 7.534-7.656.96.96 0 0 1 1.094.175l4.751 4.821a.96.96 0 0 1 .201 1.085l-.2.412a2.75 2.75 0 0 0 .533 3.141l8.75 8.899z', }, })]); }, };