@justeattakeaway/pie-icons-vue
Version:
Shared PIE Icon Components for Vue.js.
41 lines (38 loc) • 1.47 kB
JavaScript
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props';
import { iconSize, updateContextData } from './pie-icons-configs/configs-vue.mjs';
var IconStopwatchFilled = {
name: 'IconStopwatchFilled',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--stopwatchFilled', 'IconStopwatchFilled');
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: 'M8 3.695A5.547 5.547 0 0 0 3.336 6.25H5.83a.665.665 0 0 1 .656.656v4.821a.665.665 0 0 1-.656.657H3.433A5.546 5.546 0 0 0 13.55 9.076 5.548 5.548 0 0 0 8 3.695Zm2.398 6.44-.727 1.094L7.344 9.67V6.705h1.312V8.97l1.742 1.164Z',
},
}), h('path', {
attrs: {
d: 'm10.179 2.514-.315-1.295H6.136l-.315 1.295v.017h4.358v-.017Z',
},
}), h('path', {
attrs: {
d: 'M5.375 8.656V7.344H1l.438 1.312h3.937Z',
},
}), h('path', {
attrs: {
d: 'M5.375 11.281V9.97H2.531l.438 1.312h2.406Z',
},
})]);
},
};
export { IconStopwatchFilled as default };