Seed: project-management template (23 files)

This commit is contained in:
2026-07-23 22:14:47 +00:00
parent b21394ef5a
commit db54364ea0
+15
View File
@@ -0,0 +1,15 @@
import * as React from "react";
import { cn } from "@/lib/utils";
export const Separator = ({ className, orientation = "horizontal", ...props }: React.HTMLAttributes<HTMLDivElement> & { orientation?: "horizontal" | "vertical" }) => (
<div
className={cn(
"shrink-0 bg-slate-200",
orientation === "horizontal" ? "h-px w-full" : "h-full w-px",
className
)}
{...props}
/>
);
export default Separator;