import { Pressable, StyleSheet, Text, View } from "react-native"; import { fonts, radii } from "@/constants/theme"; import { useAppTheme } from "@/contexts/ThemeContext"; type FilterChipProps = { label: string; active?: boolean; onPress: () => void; }; export function FilterChip({ label, active, onPress }: FilterChipProps) { const { colors } = useAppTheme(); return ( {label} ); } const styles = StyleSheet.create({ chip: { height: 32, borderWidth: 1, borderRadius: radii.pill, overflow: "hidden", }, chipInner: { flex: 1, justifyContent: "center", alignItems: "center", paddingHorizontal: 14, }, label: { fontSize: 13, fontFamily: fonts.bodyMedium, }, });