UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

15 lines 647 B
import React from 'react'; import { ComponentPassThrough } from '../../types'; export interface OverlayProps { /** Overlay opacity */ opacity?: React.CSSProperties['opacity']; /** Overlay background-color */ color?: React.CSSProperties['backgroundColor']; /** Overlay z-index */ zIndex?: React.CSSProperties['zIndex']; } export declare function Overlay<T extends React.ElementType = 'div'>({ className, style, opacity, color, zIndex, component: Element, ...others }: ComponentPassThrough<T, OverlayProps>): JSX.Element; export declare namespace Overlay { var displayName: string; } //# sourceMappingURL=Overlay.d.ts.map