UNPKG

@justeattakeaway/pie-icons-vue

Version:
29 lines (27 loc) 2.4 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconNumberInput', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--numberInput', 'IconNumberInput'); 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: { 'fill-rule': 'evenodd', d: 'M12.215 2.31c.813 0 1.475.662 1.475 1.475v8.43c0 .813-.662 1.475-1.475 1.475h-8.43a1.477 1.477 0 0 1-1.475-1.475v-8.43c0-.813.662-1.475 1.475-1.475h8.43Zm-1.03 3.701c-.318 0-.592.045-.825.133a1.82 1.82 0 0 0-.614.387l.614.702a.871.871 0 0 1 .321-.21 1.13 1.13 0 0 1 .404-.073.74.74 0 0 1 .337.07.239.239 0 0 1 .142.23.28.28 0 0 1-.044.157.29.29 0 0 1-.133.106.536.536 0 0 1-.213.04h-.454v.836h.49c.152 0 .273.025.362.074.088.05.133.13.133.24 0 .07-.025.132-.074.185a.455.455 0 0 1-.215.12 1.22 1.22 0 0 1-.342.043 1.31 1.31 0 0 1-.437-.07 1.139 1.139 0 0 1-.354-.202l-.607.732c.17.161.37.28.605.36.233.077.521.118.863.118.26 0 .493-.028.7-.086.206-.057.382-.137.528-.239.146-.102.257-.223.333-.363a.913.913 0 0 0 .024-.84.974.974 0 0 0-.256-.31 1.194 1.194 0 0 0-.39-.204 1.003 1.003 0 0 0 .51-.507.873.873 0 0 0-.115-.89 1.321 1.321 0 0 0-.522-.391 1.896 1.896 0 0 0-.77-.148Zm-3.498.036c-.323 0-.616.047-.879.142a1.696 1.696 0 0 0-.637.383l.578.732a1.232 1.232 0 0 1 .826-.307c.149 0 .268.028.354.082a.26.26 0 0 1 .13.23.3.3 0 0 1-.035.143.392.392 0 0 1-.125.127c-.059.04-.145.09-.256.144a12.09 12.09 0 0 1-.434.2 2.85 2.85 0 0 0-.608.355 1.25 1.25 0 0 0-.374.475 1.676 1.676 0 0 0-.126.693v.507h3.15v-.896H7.244v-.013c0-.031.022-.067.067-.106.046-.039.123-.086.234-.141.11-.055.263-.126.46-.213.259-.106.474-.225.643-.356.17-.132.295-.28.377-.443.083-.163.125-.344.125-.54 0-.252-.062-.467-.186-.647a1.184 1.184 0 0 0-.514-.41 1.907 1.907 0 0 0-.764-.141Zm-4.508.608.36.885.631-.23v2.607h1.074V6.083H4.53l-1.35.572Z', 'clip-rule': 'evenodd', }, })]); }, };