import React, { forwardRef } from "react"; import { cl } from "../../utils/helpers"; import { createTransitionStatusAttribute } from "../../utils/hooks"; import { useDialogContext } from "../root/DialogRoot.context"; type DialogBackdropInternalProps = Omit< React.HTMLAttributes, "children" >; const DialogBackdropInternal = forwardRef< HTMLDivElement, DialogBackdropInternalProps >(({ className, ...restProps }, forwardedRef) => { const { transitionStatus } = useDialogContext(); return (
); }); export { DialogBackdropInternal }; export type { DialogBackdropInternalProps };