mirror of
https://github.com/siddharthvaddem/openscreen.git
synced 2026-09-21 05:43:27 +08:00
18 lines
319 B
TypeScript
18 lines
319 B
TypeScript
import { cn } from "@/lib/utils";
|
|
|
|
interface SubrowProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export default function Subrow({ children }: SubrowProps) {
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"flex items-center min-h-[32px] gap-1 px-2 py-0.5 bg-[#23232a] rounded-md text-slate-300",
|
|
)}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|