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-feather#Battery TypeScript Examples
The following examples show how to use
react-feather#Battery.
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: Confirmation.tsx From bee-dashboard with BSD 3-Clause "New" or "Revised" License | 6 votes |
export default function Confirmation(): ReactElement {
const navigate = useNavigate()
const styles = useStyles()
return (
<>
<HistoryHeader>Connect to the blockchain</HistoryHeader>
<Grid container direction="column" alignItems="center">
<Box mb={6}>
<div className={styles.checkWrapper}>
<Check size={100} color="#ededed" />
</div>
</Box>
<Box mb={1}>
<Typography style={{ fontWeight: 'bold' }}>Your node's RPC endpoint is set up correctly!</Typography>
</Box>
<Box mb={4}>
<Typography align="center">Lastly, you will need to top-up your node wallet.</Typography>
<Typography align="center">
If you're not familiar with cryptocurrencies, you can start with a bank card.
</Typography>
</Box>
<ExpandableListItemActions>
<SwarmButton iconType={Battery} onClick={() => navigate(ROUTES.TOP_UP_BANK_CARD)}>
Get started with bank card
</SwarmButton>
<SwarmButton iconType={BatteryCharging} onClick={() => navigate(ROUTES.TOP_UP_CRYPTO)}>
Use DAI
</SwarmButton>
<SwarmButton iconType={Gift} onClick={() => navigate(ROUTES.TOP_UP_GIFT_CODE)}>
Use a gift code
</SwarmButton>
</ExpandableListItemActions>
</Grid>
</>
)
}