chenw-tool
Version:
React components using pure Bootstrap 5+ which does not contain any external style and script libraries.
19 lines (18 loc) • 532 B
TypeScript
import React, { ReactNode } from "react";
import "./Index.scss";
interface Props {
maskWidth: string;
title: string;
confirmClickFn: Function;
children: ReactNode;
modalBodyHeight?: string;
operationName?: string;
closeModalClick?: Function;
footBtn?: Boolean;
body?: Boolean;
isDraggable?: Boolean | String;
zIndex?: String | any;
footer?: ReactNode;
}
declare const Mask: React.ForwardRefExoticComponent<Props & React.RefAttributes<unknown>>;
export default Mask;