'use client'; import { MediaTimeRange, MediaTimeDisplay } from 'media-chrome/react'; import { cn } from '@djangocfg/ui-core/lib'; import type { ComponentProps } from 'react'; export type SeekBarProps = ComponentProps & { readonly showTime?: boolean; }; export function SeekBar({ className, showTime = true, ...props }: SeekBarProps) { return ( <> {showTime && ( )} ); }