import { Pressable, Text, Animated } from "react-native"; import { Ionicons } from "@expo/vector-icons"; interface SidebarToggleProps { textOpacity?: Animated.Value; iconTranslateX?: Animated.Value; onPress: () => void; showLabel?: boolean; size?: number; color?: string; className?: string; } export const SidebarToggle = ({ textOpacity, iconTranslateX, onPress, showLabel = false, size = 24, color = "white", className = "", }: SidebarToggleProps) => { return ( {showLabel && ( Options )} ); };