We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
directionControlButtonColor
1 parent fa33c33 commit 0651d91Copy full SHA for 0651d91
app/src/molecules/JogControls/index.tsx
@@ -34,10 +34,11 @@ export { HORIZONTAL_PLANE, VERTICAL_PLANE }
34
35
export function JogControls(props: JogControlsProps): JSX.Element {
36
const {
37
+ jog,
38
isLPC,
39
+ directionControlButtonColor,
40
stepSizes = DEFAULT_STEP_SIZES,
41
planes = [HORIZONTAL_PLANE, VERTICAL_PLANE],
- jog,
42
auxiliaryControl = null,
43
...styleProps
44
} = props
@@ -62,7 +63,7 @@ export function JogControls(props: JogControlsProps): JSX.Element {
62
63
plane={plane}
64
jog={jog}
65
stepSize={currentStepSize}
- buttonColor={props.directionControlButtonColor}
66
+ buttonColor={directionControlButtonColor}
67
/>
68
))}
69
{auxiliaryControl}
0 commit comments