double-ui-vue
Version:
27 lines (26 loc) • 635 B
JavaScript
import { defineComponent, createVNode } from "vue";
var style = "";
const MiniLoading = defineComponent({
name: "MiniLoading",
props: {
color: {
type: String,
default: "#fff"
}
},
setup(props) {
return () => createVNode("div", {
"class": "d-min-loading"
}, [createVNode("svg", {
"class": "d-min-loading-line",
"viewBox": "0 0 16 16",
"xmlns": "http://www.w3.org/2000/svg"
}, [createVNode("path", {
"d": "M9,1 A7,7 0 0,1 15,7",
"fill": "none",
"stroke-width": "1",
"stroke": props.color
}, null)])]);
}
});
export { MiniLoading as default };