import Vue from '../../utils/vue'; import { mergeData } from 'vue-functional-data-merge'; export var props = { tag: { type: String, default: 'div' } }; // @vue/component export var BInputGroupText = /*#__PURE__*/ Vue.extend({ name: 'BInputGroupText', functional: true, props: props, render: function render(h, _ref) { var props = _ref.props, data = _ref.data, children = _ref.children; return h(props.tag, mergeData(data, { staticClass: 'input-group-text' }), children); } });