feat: column manager

This commit is contained in:
reya
2024-03-18 10:50:08 +07:00
parent c8e014f33e
commit 05b52564e0
17 changed files with 269 additions and 87 deletions
+22
View File
@@ -0,0 +1,22 @@
import { cn } from "@lume/utils";
export function ColumnHeader({
name,
className,
}: {
name: string;
className?: string;
}) {
return (
<div
className={cn(
"flex h-11 w-full shrink-0 items-center justify-center gap-2 border-b border-neutral-100 dark:border-neutral-900",
className,
)}
>
<div className="inline-flex items-center gap-1.5">
<div className="text-[13px] font-medium">{name}</div>
</div>
</div>
);
}