ant-design-x-vue-next
Version:
Ant Design X for Vue — community continuation aligned with @ant-design/x
54 lines (53 loc) • 1.29 kB
JavaScript
import { defineComponent as n, createVNode as r } from "vue";
import l from "../locale/useLocale.mjs";
const i = /* @__PURE__ */ n({
name: "AXSenderStopLoading",
__name: "StopLoading",
props: {
className: null
},
setup(e) {
const o = e, [t] = l("Sender");
return () => r("svg", {
color: "currentColor",
viewBox: "0 0 1000 1000",
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
class: o.className
}, [r("title", null, [t.value.stopLoading]), r("rect", {
fill: "currentColor",
height: "250",
rx: "24",
ry: "24",
width: "250",
x: "375",
y: "375"
}, null), r("circle", {
cx: "500",
cy: "500",
fill: "none",
r: "450",
stroke: "currentColor",
"stroke-width": "100",
opacity: "0.45"
}, null), r("circle", {
cx: "500",
cy: "500",
fill: "none",
r: "450",
stroke: "currentColor",
"stroke-width": "100",
"stroke-dasharray": "600 9999999"
}, [r("animateTransform", {
attributeName: "transform",
dur: "1s",
from: "0 500 500",
repeatCount: "indefinite",
to: "360 500 500",
type: "rotate"
}, null)])]);
}
});
export {
i as default
};