sgcart/app/components/inlineButton/inlineButton.props.ts
2026-07-03 13:10:46 +05:30

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>;
}