9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
import { TouchableOpacityProps, StyleProp, TextStyle } from 'react-native';
|
|
|
|
export interface PrimaryButtonProps extends TouchableOpacityProps {
|
|
title: string;
|
|
isLoading?: boolean;
|
|
disabled?: boolean;
|
|
textStyle?: StyleProp<TextStyle>;
|
|
}
|