Open
Description
With the react-query
devtools I can pass in custom props to make adjustments to it. In particular, it's good to be able to pass a className
or a custom style
to override some defaults, like done here:
<ReactQueryDevtools
position="bottom-left"
toggleButtonProps={{
className: 'noPrint',
style: { transform: 'translateY(-3rem)' },
}}
panelProps={{
className: 'noPrint',
}}
/>
None of the placements of the react-hook-form
devtools button work for me as there are fixed toolbars at the top and the bottom of our app. So I need to be able to pass in a transform to nudge it upwards, like I am able to with the react-query
devtools.