Is it possible to customize shift up and shift down icons? #859
-
|
Is it possible to customize shift up and shift down icons? If yes, could you please share an example |
Beta Was this translation helpful? Give feedback.
Answered by
jakeboone02
Mar 6, 2025
Replies: 1 comment
-
|
Yep! Use the const App = () => (
<QueryBuilder
translations={{
shiftActionUp: {
label: "up"
},
shiftActionDown: {
label: "down"
}
}}
/>
); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jakeboone02
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yep! Use the
translationsprop: