chenw-tool
Version:
React components using pure Bootstrap 5+ which does not contain any external style and script libraries.
14 lines (13 loc) • 425 B
TypeScript
import { ReactNode } from "react";
import "./Popovers.scss";
interface Props {
children: ReactNode;
modalBodyHeight: string;
modalBodyWidth: string;
content: string | ReactNode;
triggerShow: Boolean;
externalClassName?: any[];
closeFunc?: Function | any;
}
declare const Popovers: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<unknown>>;
export default Popovers;