UNPKG

@ontech7/react-native-dialog

Version:

Simple and lightweight dialog component for React Native, structure similar to shadcn/ui, with dimezis background blur. Compatible with Android & iOS.

5 lines (4 loc) 213 B
import React from "react"; import { ViewProps } from "react-native"; export type DialogBodyProps = ViewProps; export declare function DialogBody({ children, style, ...props }: DialogBodyProps): React.JSX.Element;