9 lines
208 B
Plaintext
9 lines
208 B
Plaintext
import * as React from 'react';
|
|
export type OverlayProps = {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
fixed?: boolean;
|
|
};
|
|
declare const Overlay: React.FC<OverlayProps>;
|
|
export { Overlay };
|