@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
- @material-ui/core#Tooltip
- @material-ui/core/styles#makeStyles
- @material-ui/core/styles#createStyles
- @material-ui/core/styles#Theme
- @material-ui/lab#SpeedDial
- @material-ui/lab#SpeedDialIcon
- @material-ui/lab#SpeedDialAction
- @material-ui/icons#ZoomIn
- @material-ui/icons#ZoomOut
- @material-ui/icons#Fullscreen
@material-ui/icons#FullscreenExit TypeScript Examples
The following examples show how to use
@material-ui/icons#FullscreenExit.
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: ZoomSpeedDial.tsx From frontend with Apache License 2.0 | 5 votes |
ScaleActionsSpeedDial: React.FunctionComponent<IProps> = ({
onZoomInClick,
onZoomOutClick,
onOriginalSizeClick,
onFitIntoScreenClick,
}) => {
const classes = useStyles();
const [open, setOpen] = React.useState(false);
return (
<SpeedDial
ariaLabel="Scale actions"
className={classes.speedDial}
icon={<SpeedDialIcon />}
onClose={() => setOpen(false)}
onOpen={() => setOpen(true)}
open={open}
direction="up"
>
<SpeedDialAction
icon={<ZoomIn />}
tooltipTitle={"Zoom In"}
onClick={onZoomInClick}
/>
<SpeedDialAction
icon={<ZoomOut />}
tooltipTitle={"Zoom Out"}
onClick={onZoomOutClick}
/>
<SpeedDialAction
icon={<Fullscreen />}
tooltipTitle={"Original size"}
onClick={onOriginalSizeClick}
/>
<SpeedDialAction
icon={<FullscreenExit />}
tooltipTitle={"Fit into screen"}
onClick={onFitIntoScreenClick}
/>
</SpeedDial>
);
}
Example #2
Source File: CardSettingsHeader.tsx From neodash with Apache License 2.0 | 5 votes |
NeoCardSettingsHeader = ({ onRemovePressed, onToggleCardSettings, onToggleCardExpand,
expanded, fullscreenEnabled, onReportHelpButtonPressed, onClonePressed }) => {
const maximizeButton = <IconButton aria-label="maximize"
onClick={onToggleCardExpand}>
<FullscreenIcon />
</IconButton>
const unMaximizeButton = <IconButton aria-label="un-maximize"
onClick={onToggleCardExpand}>
<FullscreenExit />
</IconButton>
return (
<CardHeader
avatar={<div style={{ marginTop: "-8px" }}>
<DragIndicatorIcon className="drag-handle" style={{ color: "grey", cursor: "pointer", marginTop: "8px", marginLeft: "-7px", marginRight: "10px" }}></DragIndicatorIcon>
<Tooltip title="Help" aria-label="help">
<IconButton size="medium" style={{ marginTop: "-16px", padding: "8px" }} aria-label="help"
onClick={onReportHelpButtonPressed}>
<HelpOutlineIcon />
</IconButton>
</Tooltip>
<Tooltip title="Delete" aria-label="delete">
<IconButton size="medium" style={{ marginTop: "-16px", padding: "8px", color: "red" }} aria-label="remove"
onClick={onRemovePressed} >
<DeleteOutlineIcon />
</IconButton>
</Tooltip>
<Tooltip title="Clone" aria-label="clone">
<IconButton size="medium" style={{ marginTop: "-16px", padding: "8px", color: "green" }} aria-label="clone"
onClick={onClonePressed} >
<FileCopyOutlinedIcon />
</IconButton>
</Tooltip>
</div>}
action={<>
{fullscreenEnabled ? (expanded ? unMaximizeButton : maximizeButton) : <></>}
<Tooltip title="Save" aria-label="save">
<IconButton aria-label="save" onClick={(e) => { e.preventDefault(); onToggleCardSettings() }}><SaveIcon /></IconButton>
</Tooltip >
</>}
title=""
subheader="" />
);
}