react-feather APIs
- ArrowLeft
- ChevronDown
- X
- ChevronUp
- Plus
- ArrowDown
- CheckCircle
- AlertTriangle
- ChevronRight
- ArrowUpCircle
- AlertCircle
- Info
- Settings
- Repeat
- Activity
- Check
- Copy
- HelpCircle
- Triangle
- Trash
- Search
- Code
- PieChart
- ArrowRight
- Edit
- BookOpen
- MessageCircle
- Download
- Eye
- Upload
- GitHub
- Minus
- Filter
- File
- Folder
- ChevronsLeft
- ChevronsRight
- Icon
- XCircle
- PlusCircle
- ArrowUp
- ChevronLeft
- Loader
- ChevronsDown
- Menu
- FileText
- Share
- Clipboard
- Link
- FilePlus
- FolderPlus
- Trash2
- EyeOff
- Save
- Edit3
- CornerDownRight
- XOctagon
- ArrowUpRight
- Paperclip
- ChevronsUp
- Globe
- Sunrise
- Calendar
- CheckSquare
- Square
- Zap
- Bookmark
- Briefcase
- DollarSign
- Gift
- Home
- Layers
- PlusSquare
- Battery
- BatteryCharging
- Monitor
- Wind
- AlertOctagon
- CornerUpLeft
- RefreshCw
- ExternalLink
- Sliders
- Lock
- Divide
- Slash
- Maximize2
- Box
- Grid
- Package
- Server
- Star
- Heart
- Link2
- GitBranch
- Send
- Moon
- Sun
- List
- MoreHorizontal
- ArrowDownCircle
- RotateCw
- RotateCcw
- Slack
Other Related APIs
- react#ReactElement
- react-router-dom#Link
- @material-ui/core#List
- @material-ui/core#Divider
- @material-ui/core#Drawer
- @material-ui/core#Grid
- @material-ui/core/styles#makeStyles
- @material-ui/core/styles#createStyles
- @material-ui/core/styles#Theme
- @material-ui/icons#OpenInNewSharp
- react-feather#BookOpen
- react-feather#Settings
- react-feather#FileText
- react-feather#Bookmark
- react-feather#DollarSign
- react-feather#Gift
- react-feather#Home
- react-feather#Layers
react-feather#Briefcase TypeScript Examples
The following examples show how to use
react-feather#Briefcase.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SideBar.tsx From bee-dashboard with BSD 3-Clause "New" or "Revised" License | 5 votes |
navBarItems = [
{
label: 'Info',
path: ROUTES.INFO,
icon: Home,
},
{
label: 'Files',
path: ROUTES.UPLOAD,
icon: FileText,
},
{
label: 'Feeds',
path: ROUTES.FEEDS,
icon: Bookmark,
},
{
label: 'Stamps',
path: ROUTES.STAMPS,
icon: Layers,
},
{
label: 'Accounting',
path: ROUTES.ACCOUNTING,
icon: DollarSign,
},
{
label: 'Settings',
path: ROUTES.SETTINGS,
icon: Settings,
},
{
label: 'Account',
path: ROUTES.WALLET,
icon: Briefcase,
},
{
label: 'Gift Wallets',
path: ROUTES.GIFT_CODES,
icon: Gift,
},
]