import Feather from "@expo/vector-icons/Feather"; import React from "react"; import { StyleSheet, Text, TouchableOpacity, View } from "react-native"; export default function TagChip({ icon: _icon, label, onPress, }: { icon: any; label: string; onPress: () => void; }) { return ( {label} ); } const styles = StyleSheet.create({ tag: { flexDirection: "row", alignItems: "center", backgroundColor: "rgba(255,255,255,0.12)", borderRadius: 8, paddingHorizontal: 12, paddingVertical: 7, marginRight: 8, marginBottom: 8, }, tagLabel: { color: "white", fontSize: 15, fontWeight: "400", }, });