Version 4.3.0
- allow styles overwrite
export interface DevtoolUIProps {
control: Control<any>;
placement?: PLACEMENT;
/** Custom styles for the "show/hide panel" button and for the panel div */
styles?: {
/** Custom styles for the "show/hide panel" button */
button?: React.HTMLAttributes<HTMLButtonElement>['style'];
/** Custom styles for the panel div */
panel?: React.HTMLAttributes<HTMLDivElement>['style'];
};
}
thanks to @cvolant