"use client"; import { Slider } from "@/components/ui/slider"; import type { ActuatorInfo } from "@/lib/buttplug/types"; interface ActuatorSliderProps { actuator: ActuatorInfo; value: number; transmitting: boolean; onChange: (value: number) => void; } export function ActuatorSlider({ actuator, value, transmitting, onChange }: ActuatorSliderProps) { return (