From d9d6d033f9a76d96581bd4009cfb31654549bbb3 Mon Sep 17 00:00:00 2001 From: p-sw Date: Thu, 27 Jun 2024 13:14:57 +0900 Subject: [PATCH] fix: rename DialogContent interface to DialogContentProps --- packages/react/components/Dialog/Component.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react/components/Dialog/Component.tsx b/packages/react/components/Dialog/Component.tsx index f4bdc36..3ffa65d 100644 --- a/packages/react/components/Dialog/Component.tsx +++ b/packages/react/components/Dialog/Component.tsx @@ -170,11 +170,11 @@ const [dialogContentVariant, resolveDialogContentVariant] = vcn({ }, }); -interface DialogContent +interface DialogContentProps extends React.ComponentPropsWithoutRef<"div">, Omit, "opened"> {} -const DialogContent = React.forwardRef( +const DialogContent = React.forwardRef( (props, ref) => { const [{ opened }] = useDialogContext(); const [variantProps, otherPropsCompressed] = resolveDialogContentVariant({