@justeattakeaway/pie-icons-vue
Version:
Shared PIE Icon Components for Vue.js.
45 lines (42 loc) • 1.56 kB
JavaScript
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props';
import { iconSize, updateContextData } from './pie-icons-configs/configs-vue.mjs';
var IconSocialFacebookStatic = {
name: 'IconSocialFacebookStatic',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--facebookStatic', 'IconSocialFacebookStatic');
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('g', {
attrs: {
'clip-path': 'url(#prefix__clip0_1595_1545)',
},
}, [h('path', {
attrs: {
fill: '#1778F2',
d: 'M8 1.455A6.545 6.545 0 0 0 6.96 14.466V9.89H5.296V8H6.96V6.556A2.31 2.31 0 0 1 9.435 4.01c.49.007.978.051 1.461.131v1.61h-.822a.945.945 0 0 0-1.068 1.024V8h1.812l-.289 1.89H9.006v4.576A6.545 6.545 0 0 0 8 1.455Z',
},
})]), h('defs', [h('clipPath', {
attrs: {
id: 'prefix__clip0_1595_1545',
},
}, [h('rect', {
attrs: {
width: '14',
height: '14',
fill: '#fff',
transform: 'translate(1 1)',
},
})])])]);
},
};
export { IconSocialFacebookStatic as default };