Files
openscreen/src/components/video-editor/timeline/Subrow.tsx
T
2026-03-07 17:59:41 -08:00

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>
);
}