react-code-dataset
/
next.js
/packages
/next
/src
/next-devtools
/dev-overlay
/components
/overlay
/overlay-backdrop.tsx
| export type OverlayBackdropProps = { | |
| fixed?: boolean | |
| } & React.HTMLAttributes<HTMLDivElement> | |
| export function OverlayBackdrop({ fixed, ...props }: OverlayBackdropProps) { | |
| return ( | |
| <div | |
| data-nextjs-dialog-backdrop | |
| data-nextjs-dialog-backdrop-fixed={fixed ? true : undefined} | |
| {...props} | |
| /> | |
| ) | |
| } | |