@gravity-ui/uikit
Version:
Gravity UI base styling and components
11 lines (10 loc) • 394 B
TypeScript
import type * as React from 'react';
import "./Overlay.css";
export type OverlayBackground = 'base' | 'float';
export interface OverlayProps {
className?: string;
background?: OverlayBackground;
visible?: boolean;
children?: React.ReactNode;
}
export declare function Overlay({ className, background, visible, children }: OverlayProps): import("react/jsx-runtime").JSX.Element;