UNPKG

ar-design

Version:

AR Design is a (react | nextjs) ui library.

17 lines (16 loc) 401 B
import { IChildren } from "../../../libs/types/IGlobalProps"; interface IProps extends IChildren { title?: string; message?: string; content?: React.JSX.Element; onConfirm?: (confirm: boolean) => void; windowBlur?: boolean; fullWidth?: boolean; config?: { buttons: { okay: string; cancel?: string; }; }; } export default IProps;