react-box-tools
Version:
Box tools react components, utils and hooks
16 lines (12 loc) • 373 B
TypeScript
import { CSSProperties } from 'react';
import { JSX } from 'react/jsx-runtime';
import { ReactNode } from 'react';
export declare const Overlay: (props: OverlayProps) => JSX.Element;
export declare interface OverlayProps {
show: boolean;
backdrop?: boolean;
style?: CSSProperties;
className?: string;
children: ReactNode;
}
export { }