import { Adapt, Button, Dialog, Sheet, Text, View } from "tamagui"; import React from "react"; import { createDisclosure } from "@/lib/utils"; import Icons from "./icons"; type ModalProps = { disclosure: ReturnType>; title?: string; description?: string; children?: React.ReactNode; width?: number | string; height?: number | string; maxHeight?: number | string; }; const Modal = ({ disclosure, children, title, description, width = 512, height = "90%", maxHeight = 600, }: ModalProps) => { const { open, onOpenChange } = disclosure.use(); return ( {title} {description} ); }; export default Modal;