office-ui-fabric-react
Version: 
Reusable React components for building experiences for Office 365.
16 lines (15 loc) • 494 B
TypeScript
import * as React from 'react';
export interface IOverlay {
}
export interface IOverlayProps extends React.HTMLAttributes<HTMLElement> {
    /**
     * Optional callback to access the IOverlay interface. Use this instead of ref for accessing
     * the public methods and properties of the component.
     */
    componentRef?: (component: IOverlay) => void;
    /**
     * Whether to use the dark-themed overlay.
     * @defaultvalue false
     */
    isDarkThemed?: boolean;
}