fix: Unable to access icon picker (from ts migration)
This commit is contained in:
@@ -60,7 +60,13 @@ const Modal = ({
|
||||
<DialogBackdrop {...dialog}>
|
||||
{(props) => (
|
||||
<Backdrop {...props}>
|
||||
<Dialog {...dialog} preventBodyScroll hideOnEsc hide={onRequestClose}>
|
||||
<Dialog
|
||||
{...dialog}
|
||||
preventBodyScroll
|
||||
hideOnEsc
|
||||
hideOnClickOutside={false}
|
||||
hide={onRequestClose}
|
||||
>
|
||||
{(props) => (
|
||||
<Scene
|
||||
$nested={!!depth}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import styled from "styled-components";
|
||||
|
||||
const Button = styled.button<{
|
||||
const Button = styled.button.attrs(() => ({ type: "button" }))<{
|
||||
width?: number;
|
||||
height?: number;
|
||||
size?: number;
|
||||
|
||||
Reference in New Issue
Block a user