UNPKG

@justeattakeaway/pie-icons-vue

Version:
35 lines (33 loc) 1.45 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconAlertTriangle', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--alertTriangle', 'IconAlertTriangle'); 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.656 6.156H7.343v2.625h1.313V6.156Z', }, }), h('path', { attrs: { d: 'M8 11.406a.875.875 0 1 0 0-1.75.875.875 0 0 0 0 1.75Z', }, }), h('path', { attrs: { d: 'M13.407 13.813H2.592a1.496 1.496 0 0 1-1.33-.797 1.592 1.592 0 0 1 .044-1.61l5.407-8.662A1.505 1.505 0 0 1 8 2a1.505 1.505 0 0 1 1.286.726l5.407 8.68a1.594 1.594 0 0 1 0 1.628 1.496 1.496 0 0 1-1.286.778ZM8 3.313a.192.192 0 0 0-.175.104L2.417 12.09a.298.298 0 0 0 0 .297.202.202 0 0 0 .184.114h10.806a.201.201 0 0 0 .184-.114.297.297 0 0 0 0-.297L8.175 3.418A.193.193 0 0 0 8 3.312Z', }, })]); }, };