hongluan-ui
Version:
Hongluan Component Library for Vue 3
33 lines (30 loc) • 1.04 kB
JavaScript
import { defineComponent, openBlock, createBlock, resolveDynamicComponent, createElementBlock, createElementVNode } from 'vue';
import { useCustomIcon } from './use-custom.mjs';
import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
const _sfc_main = defineComponent({
name: "SystemLoading",
setup() {
const { CustomIcon } = useCustomIcon("SystemLoading");
return {
CustomIcon
};
}
});
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return _ctx.CustomIcon ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.CustomIcon), { key: 0 })) : (openBlock(), createElementBlock("svg", {
key: 1,
class: "tail",
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 50 50",
name: "SystemLoading"
}, [
createElementVNode("circle", {
cx: "25",
cy: "25",
r: "20"
})
]));
}
var SystemLoading = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
export { SystemLoading as default };
//# sourceMappingURL=loading.mjs.map