UNPKG

react-native-simi-comps

Version:
8 lines (7 loc) 236 B
/// <reference types="react" /> import { PressableProps } from "react-native"; export default function TextLink({ onPress, text, color, }: { onPress: PressableProps["onPress"]; text: string; color?: string; }): JSX.Element;