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) 224 B
import React from "react"; import type { ViewProps } from "react-native"; export type DialogFooterProps = ViewProps; export declare function DialogFooter({ style, children, ...props }: DialogFooterProps): React.JSX.Element;