11 lines
338 B
TypeScript
11 lines
338 B
TypeScript
import { GestureResponderEvent, StyleProp, ViewStyle, TextStyle } from 'react-native';
|
|
|
|
export interface InlineButtonProps {
|
|
onPress: (event: GestureResponderEvent) => void;
|
|
text?: string;
|
|
highlightedText?: string;
|
|
style?: StyleProp<ViewStyle>;
|
|
textStyle?: StyleProp<TextStyle>;
|
|
highlightedTextStyle?: StyleProp<TextStyle>;
|
|
}
|