import React from "react"; import { Pressable, PressableProps } from "react-native"; import IconButton from "./IconButton"; import Text from "./Text"; import View from "./View"; export default function Chip({ text, onTextPress, onRemove, inline = true, }: { text: string; onTextPress?: PressableProps["onPress"]; onRemove?: PressableProps["onPress"]; inline?: boolean; }) { return ( {onRemove !== undefined && ( )} ); }