fix: remove opened prop in DrawerOverlay

This commit is contained in:
p-sw 2024-06-03 16:05:10 +09:00
parent 8f1caa7775
commit 719506c08a

View File

@ -89,7 +89,7 @@ const [drawerOverlayVariant, resolveDrawerOverlayVariantProps] = vcn({
const DRAWER_OVERLAY_BACKDROP_FILTER_BRIGHTNESS = 0.3;
interface DrawerOverlayProps
extends VariantProps<typeof drawerOverlayVariant>,
extends Omit<VariantProps<typeof drawerOverlayVariant>, "opened">,
AsChild,
ComponentPropsWithoutRef<"div"> {}