This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/vuetify/es5/components/VList/VListItemIcon.js

27 lines
667 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _vue = _interopRequireDefault(require("vue"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
// Types
/* @vue/component */
var _default = _vue.default.extend({
name: 'v-list-item-icon',
functional: true,
render: function render(h, _ref) {
var data = _ref.data,
children = _ref.children;
data.staticClass = "v-list-item__icon ".concat(data.staticClass || '').trim();
return h('div', data, children);
}
});
exports.default = _default;
//# sourceMappingURL=VListItemIcon.js.map