import * as React from 'react'; import { withTheme } from 'react-native-paper'; import {DrawerItem} from "@react-navigation/drawer"; function SidebarDivider(props) { const { colors } = props.theme; return ( ); } export default withTheme(SidebarDivider);