DrawerItem
DrawerItem is a component used to show an action item with an icon and a label in a navigation drawer.
Usage
import * as React from 'react';
import { DrawerItem } from 'react-native-paper';
const MyComponent = () => (
<DrawerItem label="First Item" />
);