@nghinv/react-native-app-tour
Version:
React Native app tour Library
20 lines (19 loc) • 635 B
TypeScript
/**
* Created by nghinv on Sat Jun 19 2021
* Copyright (c) 2021 nghinv@lumi.biz
*/
import React from 'react';
import { ViewStyle, StyleProp, TextStyle, TouchableOpacityProps, TextProps } from 'react-native';
export interface ButtonTextProps {
title?: string;
titleColor?: string;
disabled?: boolean;
onPress?: () => void;
style?: StyleProp<ViewStyle>;
titleStyle?: TextStyle;
buttonProps?: TouchableOpacityProps;
titleProps?: TextProps;
}
declare function ButtonText(props: ButtonTextProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof ButtonText>;
export default _default;