'use client'; import { MediaControlBar } from 'media-chrome/react'; import { cn } from '@djangocfg/ui-core/lib'; import type { ComponentProps } from 'react'; export type ControlsBarProps = ComponentProps; /** * Control bar pinned to the bottom over a bottom-up black scrim so the * controls stay legible on any video frame. Colours read on-black * regardless of theme — the video canvas is always a black surface. * * The bar participates in media-chrome's `autohide`: when the * `` adds the `mediacontrolshidden` user-inactive * state, we fade the whole bar (controls + scrim) out together. */ export function ControlsBar({ className, children, ...props }: ControlsBarProps) { return ( {children} ); }