import * as React from "react"; import type { BackdropOwnProps, PolymorphicWithRef } from "../types"; import { BackdropBase } from "../base-components"; type BackdropProps = PolymorphicWithRef< T, BackdropOwnProps >; type BackdropElement = ( props: BackdropProps ) => React.ReactElement>; const Backdrop: BackdropElement = React.forwardRef( ( props: BackdropProps, innerRef: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default Backdrop;