@material-ui/icons APIs
- Close
- ExpandMore
- Add
- ExpandLess
- ArrowDropDown
- GitHub
- Check
- ArrowUpward
- ArrowDownward
- MoreVert
- Launch
- Info
- ChevronRight
- Edit
- Clear
- HelpOutline
- Delete
- Search
- Visibility
- VisibilityOff
- Settings
- ExitToApp
- Error
- InfoOutlined
- ArrowDropUp
- Brightness3
- CheckCircle
- KeyboardArrowRight
- KeyboardArrowDown
- KeyboardArrowUp
- Schedule
- ImageRounded
- Refresh
- KeyboardArrowLeft
- ArrowForward
- WarningRounded
- CloudDownload
- FullscreenExit
- Notifications
- ChevronLeft
- VolumeUp
- ArrowBack
- Work
- Person
- Favorite
- SearchOutlined
- AccountCircle
- Send
- Warning
- FirstPage
- LastPage
- Brightness5
- Telegram
- AccountBalanceWallet
- NotificationsNone
- AddCircle
- SwapHoriz
- AccessTime
- DoneOutlined
- ChevronRightRounded
- List
- ViewModule
- ThumbDownOutlined
- ThumbUpOutlined
- Forum
- CallMade
- PlayCircleOutline
- Cancel
- CancelRounded
- ArrowForwardIos
- LiveHelp
- AllInbox
- Face
- People
- SettingsPower
- NavigateNext
- NavigateBefore
- Save
- LayersClear
- Collections
- ThumbDown
- ThumbUp
- ZoomIn
- ZoomOut
- Fullscreen
- BarChart
- Image
- CenterFocusWeak
- VolumeDown
- Copyright
- DirectionsBoatRounded
- Create
- DeleteOutline
- DeleteOutlineOutlined
- CloudUploadOutlined
- PlayArrow
- Stop
- Done
- Undo
- FileCopy
- Menu
- Home
- Accessibility
- NotificationsActive
- Today
- Gavel
- AddAPhoto
- Dashboard
- Devices
- Event
- FitnessCenter
- Remove
- PinDrop
- Toc
- Group
- MenuBook
- NotListedLocation
- LocationOff
- Alarm
- BrightnessMedium
- Cloud
- ListAlt
- Pets
- GetApp
- ControlPoint
- FiberManualRecordRounded
- Flag
- FileCopyOutlined
- ExitToAppOutlined
- OpenInNew
- CheckCircleOutlined
- CancelOutlined
- PauseCircleOutline
- RemoveCircleOutline
- PlayCircleOutlineOutlined
- ArrowDownwardOutlined
- Brightness7
- OpenInNewSharp
- FilterCenterFocusSharp
- Web
- CheckRounded
- DeleteRounded
- FileCopyRounded
- MoreVertRounded
- SendRounded
- Cached
- CalendarToday
- FlashOn
- PictureAsPdf
- GridOn
- ArrowBackRounded
- PersonAddRounded
- KeyboardArrowUpRounded
- KeyboardArrowDownRounded
- KeyboardArrowLeftRounded
- KeyboardArrowRightRounded
- IndeterminateCheckBoxRounded
- FilterList
- Subject
- ExitToAppRounded
- CachedRounded
- FaceRounded
- Language
- SvgIconComponent
- MoreHoriz
- YouTube
- RestorePage
- NoteAdd
- ArrowBackIos
- Equalizer
- ImportExportRounded
- CloudDownloadRounded
- HelpOutlineRounded
- Star
- Business
- HouseOutlined
- ArrowRight
- ErrorOutline
- Lock
- FavoriteBorder
- MeetingRoom
- Mic
- MicOff
- Videocam
- VideocamOff
- VolumeOff
- ScreenShare
- Receipt
- Title
- ViewComfy
- ViewCompact
- FiberManualRecord
- RadioButtonUnchecked
Other Related APIs
- react#Fragment
- react#ReactElement
- react#Dispatch
- react#SetStateAction
- react-router-dom#Link
- react-router-dom#NavLink
- @material-ui/core#List
- @material-ui/core#ListItem
- @material-ui/core#IconButton
- @material-ui/core#ListItemText
- @material-ui/core#Divider
- @material-ui/core#useTheme
- @material-ui/core#Theme
- @material-ui/core#makeStyles
- @material-ui/core#ListSubheader
- @material-ui/core#SwipeableDrawer
- @material-ui/core#createStyles
- @material-ui/icons#Settings
@material-ui/icons#HelpOutlineRounded TypeScript Examples
The following examples show how to use
@material-ui/icons#HelpOutlineRounded.
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: ResponsiveDrawer.tsx From UsTaxes with GNU Affero General Public License v3.0 | 4 votes |
function ResponsiveDrawer(props: DrawerItemsProps): ReactElement {
const classes = useStyles({ isMobile })
const theme = useTheme()
const { sections, isOpen, setOpen } = props
const drawer = (
<>
{/* {isMobile && <Toolbar />} */}
{sections.map(({ title, items }) => (
<Fragment key={`section ${title}`}>
<List
subheader={<ListSubheader disableSticky>{title}</ListSubheader>}
className={classes.list}
>
{items.map((item) => (
<ListItem
button
classes={{}}
key={item.title}
component={NavLink}
selected={location.pathname === item.url}
to={item.url}
>
<ListItemText primary={`${item.title}`} />
</ListItem>
))}
</List>
<Divider />
</Fragment>
))}
<List className={classes.listSocial}>
<ListItem className={classes.listItemSocial}>
<Link to={Urls.help}>
<IconButton color="secondary" aria-label="help, support, feedback">
<HelpOutlineRounded />
</IconButton>
</Link>
<IconButton
color="secondary"
aria-label="github, opens in new tab"
component="a"
href={`https://github.com/ustaxes/UsTaxes`}
target="_blank"
rel="noreferrer noopener"
>
<GitHubIcon />
</IconButton>
</ListItem>
<ListItem className={classes.listItemSocial}>
<IconButton
color="secondary"
aria-label="twitter, opens in new tab"
component="a"
href={`https://www.twitter.com/ustaxesorg`}
target="_blank"
rel="noreferrer noopener"
>
<TwitterIcon />
</IconButton>
</ListItem>
<ListItem className={classes.listItemSocial}>
<Link to={Urls.settings}>
<IconButton color="secondary" aria-label="site user settings">
<Settings />
</IconButton>
</Link>
</ListItem>
</List>
</>
)
return (
<nav className={classes.drawer} aria-label="primary">
<SwipeableDrawer
variant={!isMobile ? 'persistent' : undefined}
anchor={theme.direction === 'rtl' ? 'right' : 'left'}
open={isOpen}
onOpen={() => setOpen(true)}
onClose={() => setOpen(false)}
classes={{
root: classes.drawerContainer,
paper: classes.drawerPaper
}}
ModalProps={{
BackdropProps: {
classes: { root: classes.drawerBackdrop }
}
// Disabling for the time being due to scroll position persisting
// keepMounted: isMobile ? true : false // Better open performance on mobile.
}}
>
{drawer}
</SwipeableDrawer>
</nav>
)
}