@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
13 lines (12 loc) • 428 B
TypeScript
import React from 'react';
import { IOverlayStandAlone } from './types/overlay';
/**
* @description
* Overlay component is used to create a background overlay.
* @param {React.PropsWithChildren<IOverlayStandAlone>} props
* @returns {JSX.Element}
* @constructor
* @example
* <Overlay />
*/
export declare const OverlayStandAlone: React.ForwardRefExoticComponent<IOverlayStandAlone & React.RefAttributes<HTMLDivElement>>;