import * as React from "react"; import { TouchableOpacity, Text, View, ViewProps, TextProps, ViewStyle, } from "react-native"; import { styles, textStyles } from "./styles"; import { useThemeProvider } from "../../../providers/theme-provider"; interface Props extends TextProps { label: string; onPress?: () => void; viewStyle?: ViewStyle; } function LinkButton(props: Props) { return ( {props.label} ); } export default LinkButton;