UNPKG

replyke-rn

Version:

Replyke React Native components: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

12 lines (11 loc) 399 B
import { StyleProp, ViewStyle } from "react-native"; declare const CustomButton: ({ onPress, text, activeText, error, disabled, style, submitting, }: { onPress: () => void; text: string; activeText: string; style?: StyleProp<ViewStyle>; error?: string; disabled?: boolean; submitting?: boolean; }) => import("react/jsx-runtime").JSX.Element; export default CustomButton;