import React from 'react'; import { TouchableOpacity, Text, View } from 'react-native'; import { InlineButtonProps } from './inlineButton.props'; import { styles } from './inlineButton.styles'; export function InlineButton({ onPress, text, highlightedText, style, textStyle, highlightedTextStyle, }: InlineButtonProps) { return ( {text && {text} } {highlightedText && ( {highlightedText} )} ); }