import * as React from 'react'; import {withTheme} from 'react-native-paper'; import {DrawerItem} from "@react-navigation/drawer"; import {MaterialCommunityIcons} from "@expo/vector-icons"; function SidebarItem(props) { const {colors} = props.theme; return ( } style={{ marginLeft: 0, marginRight: 0, padding: 0, borderRadius: 0, }} labelStyle={{ color: colors.text, }} /> ); } export default withTheme(SidebarItem);