@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
37 lines (34 loc) • 1.25 kB
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconRss = {
name: 'IconRss',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--rss', 'IconRss');
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: 'M5.034 2.96v1.312c.297 0 7.35.088 7.35 7.35h1.312c0-6.85-5.696-8.662-8.662-8.662Z',
},
}), h('path', {
attrs: {
d: 'M5.034 7.326V8.64A2.984 2.984 0 0 1 8 11.623h1.312a4.296 4.296 0 0 0-4.278-4.297Z',
},
}), h('path', {
attrs: {
d: 'M3.433 11.964a1.155 1.155 0 1 0 1.627 1.639 1.155 1.155 0 0 0-1.627-1.64Z',
},
})]);
},
};
export { IconRss as default };