export type OverlayBackdropProps = { fixed?: boolean } & React.HTMLAttributes export function OverlayBackdrop({ fixed, ...props }: OverlayBackdropProps) { return (
) }