feat: 加仓自动获取费率数据

This commit is contained in:
hzm
2026-03-17 15:41:19 +08:00
parent 104a847d2a
commit b489677d3e
4 changed files with 182 additions and 67 deletions

21
components/ui/spinner.jsx Normal file
View File

@@ -0,0 +1,21 @@
import { Loader2Icon } from "lucide-react"
import { cn } from "@/lib/utils"
function Spinner({
className,
...props
}) {
return (
<Loader2Icon
role="status"
aria-label="Loading"
className={cn(
"size-4 animate-spin text-muted-foreground motion-reduce:animate-none",
className
)}
{...props} />
);
}
export { Spinner }