UNPKG

react-native-simi-comps

Version:
9 lines (8 loc) 278 B
/// <reference types="react" /> import { ModalProps } from "react-native"; export default function Modal({ visible, transparent, children, close, }: { visible: boolean; children: ModalProps["children"]; close: () => void; transparent?: boolean; }): JSX.Element;