@codecademy/gamut

73.6.173.6.2-alpha.3e37cd.0
dist/Overlay/index.d.ts
~dist/Overlay/index.d.tsModified
+3−1
Index: package/dist/Overlay/index.d.ts
===================================================================
--- package/dist/Overlay/index.d.ts
+++ package/dist/Overlay/index.d.ts
@@ -1,6 +1,8 @@
+import { ComponentPropsWithoutRef } from 'react';
 import * as React from 'react';
-export type OverlayProps = {
+import { ReservedDataAttributes } from '../utils';
+export type OverlayProps = Omit<ComponentPropsWithoutRef<'div'>, 'children' | 'color'> & ReservedDataAttributes & {
     children: React.ReactElement<any>;
     className?: string;
     /**
      * Whether clicking on the screen outside of the container should close the Overlay.