import React from "react"; import { Pressable, Text, ViewStyle } from "react-native"; import { useTheme } from "../../contexts/ThemeContext"; interface IconButtonProps { onPress: () => void; label: string; size?: number; style?: ViewStyle; } export function IconButton({ onPress, label, size = 24, }: IconButtonProps) { const { colors } = useTheme(); return ( {label} ); }