import { Link } from "react-router-native"; import { StyleSheet, Text, View } from 'react-native'; import { MaterialIcons, FontAwesome5, Entypo, Ionicons } from '@expo/vector-icons'; export default function Navbar({theme}:any){ return ( ) } const style = (theme:any) => { return StyleSheet.create({ container: { }, text: { color: theme.text, }, navabar: { marginTop: "auto", flexDirection: 'row', width: '100%', }, navButton: { height: 60, textAlign: 'center', paddingTop: 20, paddingBottom: 10, color: theme.text, backgroundColor:theme.accent, }, }); }