UNPKG

react-native-simi-comps

Version:
9 lines (8 loc) 296 B
/// <reference types="react" /> import { PressableProps } from "react-native"; export default function Chip({ text, onTextPress, onRemove, inline, }: { text: string; onTextPress?: PressableProps["onPress"]; onRemove?: PressableProps["onPress"]; inline?: boolean; }): JSX.Element;