From f8b2c6d61c513b4022993fb4185ada4ca9b35058 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 28 Dec 2022 22:37:21 -0800 Subject: [PATCH] Use new Overlay component --- components/Dialog/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/Dialog/index.tsx b/components/Dialog/index.tsx index 54a0be03..8f544fa8 100644 --- a/components/Dialog/index.tsx +++ b/components/Dialog/index.tsx @@ -3,6 +3,7 @@ import * as DialogPrimitive from '@radix-ui/react-dialog' import classNames from 'classnames' import './index.scss' +import Overlay from '~components/Overlay' interface Props extends React.DetailedHTMLProps< @@ -24,7 +25,6 @@ export const DialogContent = React.forwardRef( return ( - ( > {children} + ) }