UNPKG

@spicy-ui/core

Version:

A themable and extensible React UI library, ready to use out of the box

9 lines (8 loc) 332 B
import * as React from 'react'; import { SxProp } from '../../system'; import { AsProp, ChildrenProp } from '../../types'; export interface OverlayProps extends AsProp, ChildrenProp, SxProp { isOpen: boolean; onClick?: React.MouseEventHandler<HTMLDivElement>; } export declare const Overlay: React.FC<OverlayProps>;