UNPKG

@wandelbots/wandelbots-js-react-components

Version:

React UI toolkit for building applications on top of the Wandelbots platform

23 lines 848 B
import { type SxProps } from "@mui/material"; import type { ReactNode } from "react"; import type { JoggingStore } from "./jogging/JoggingStore"; type VelocitySliderProps = { min: number; max: number; velocity: number; onVelocityChange: (newVelocity: number) => void; disabled?: boolean; renderValue?: (value: number) => ReactNode; store: JoggingStore; }; /** A slider for controlling the movement velocity of a robot */ export declare const VelocitySlider: ((props: VelocitySliderProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; type VelocitySliderLabelProps = { value: string; sx?: SxProps; }; export declare function VelocitySliderLabel({ value, sx }: VelocitySliderLabelProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=VelocitySlider.d.ts.map