react-native-dialog
Version:
A flexible react-native dialog
10 lines (9 loc) • 348 B
TypeScript
import * as React from "react";
import { ReactNode } from "react";
import { StyleProp, TextStyle, SwitchProps } from "react-native";
export interface DialogSwitchProps extends SwitchProps {
label?: ReactNode;
unstableLabelStyle?: StyleProp<TextStyle>;
}
declare const DialogSwitch: React.FC<DialogSwitchProps>;
export default DialogSwitch;