import { CSSProperties } from "react" export default (props:{ z?:number, onclose?:()=>void, darkness?:number, maxWidth?:number | string, padding?:number | string, wz?:number, titleBackColor?:string, titleColor?:string, title?:string, children?:any, onhelp?:()=>void, style?:CSSProperties, watermarkimg?:string, id?:string }) => { return <>
{ props.onclose?.() }}>
{props.title}
props.onclose ? props.onclose() : null}> close icon
{props.onhelp ?
{ props.onhelp?.() }}> help icon
: null}
{props.children} {props.watermarkimg? :null}
}