10 lines
278 B
TypeScript
10 lines
278 B
TypeScript
import { GestureResponderEvent, StyleProp, ViewStyle, TextStyle } from 'react-native';
|
|
|
|
export interface ButtonProps {
|
|
title: string;
|
|
onPress: (event: GestureResponderEvent) => void;
|
|
style?: StyleProp<ViewStyle>;
|
|
textStyle?: StyleProp<TextStyle>;
|
|
loading?: boolean;
|
|
}
|