feat: Implement a new terminal dashboard featuring an analytics panel, sparklines, and foundational UI components and utilities.

This commit is contained in:
2569718930@qq.com
2026-03-08 04:53:38 +08:00
parent d26bce6358
commit d2107cbcbe
13 changed files with 1542 additions and 100 deletions
+24
View File
@@ -0,0 +1,24 @@
"use client";
import * as React from "react";
import { cn } from "@/lib/utils";
function Separator({
className,
orientation = "horizontal",
}: React.HTMLAttributes<HTMLDivElement> & {
orientation?: "horizontal" | "vertical";
}) {
return (
<div
className={cn(
"shrink-0 bg-border/80",
orientation === "horizontal" ? "h-px w-full" : "h-full w-px",
className,
)}
/>
);
}
export { Separator };