"use client"; import React from "react"; import { SeekBarProps } from "../../types/player"; import { RangeInput } from "@/components/ui/RangeInput"; export function SeekBar({ value, max, onChange, disabled, className }: SeekBarProps) { return ( ); }