@material-ui/icons APIs
- ExpandMore
- Delete
- Close
- Visibility
- VisibilityOff
- Check
- Add
- Edit
- Search
- ExpandLess
- Settings
- Person
- Info
- Clear
- ExitToApp
- ArrowDropDown
- Home
- GitHub
- Warning
- ArrowBack
- SearchOutlined
- Done
- LocationOn
- PlayArrow
- Apps
- Brightness4
- Brightness7
- Description
- KeyboardArrowDown
- KeyboardArrowLeft
- KeyboardArrowRight
- MoreVert
- LocationCity
- Map
- Image
- AccountCircle
- InfoOutlined
- Create
- Block
- Replay
- AddCircle
- HomeRounded
- GetApp
- ChevronLeft
- ChevronRight
- CloudDownload
- CheckCircleOutline
- Send
- LockOpen
- Cancel
- NavigateNext
- AccountBox
- DragIndicator
- FavoriteBorderOutlined
- AccessTime
- DoneAll
- CheckCircle
- CropFree
- LockOutlined
- Undo
- Dashboard
- People
- PhotoLibrary
- HomeOutlined
- Group
- ArrowDropUp
- Remove
- ArrowUpward
- Save
- ArrowForward
- AttachFile
- Headset
- SignalCellularAlt
- ArrowForwardIos
- PlayCircleFilled
- AccessAlarm
- Adjust
- BarChart
- CloseRounded
- PlayArrowOutlined
- ImageRounded
- MenuBookRounded
- RefreshRounded
- HourglassEmptyOutlined
- Announcement
- Ballot
- QuestionAnswerOutlined
- CloudUpload
- SkipNext
- ArrowRightAlt
- MoreHoriz
- FileCopy
- MenuBook
- Language
- AlternateEmail
- FolderOpen
- Lock
- Pets
- AddCircleRounded
- ExploreRounded
- WbSunnyRounded
- Brightness2Rounded
- DonutLargeRounded
- AssistantRounded
- AccountCircleRounded
- ExitToAppRounded
- VpnKey
- MailOutline
- Smartphone
- DeleteForever
- LanguageOutlined
- Colorize
- SignalCellularConnectedNoInternet2Bar
- SignalCellularConnectedNoInternet0Bar
- SignalCellular4Bar
- DeleteOutline
- NewReleases
- LocalOffer
- Assessment
- Place
- TrendingDown
- ShoppingCart
- Stop
- RotateLeft
- Menu
- Flag
- Forum
- GroupSharp
- InsertEmoticon
- NotificationsActive
- PhoneIphone
- AllInbox
- Comment
- Photo
- PlaylistAddCheck
- CloudUploadRounded
- ExpandMoreOutlined
- History
- PersonOutlineOutlined
- ArrowForwardIosRounded
- ArrowBackIosRounded
- AssignmentOutlined
- VerticalAlignCenterOutlined
- CalendarTodayOutlined
- Error
- PlaylistPlay
- MusicNoteTwoTone
- Portrait
- ExploreOutlined
- DeleteRounded
- EditRounded
- SaveRounded
- CreateNewFolder
- MeetingRoom
- MenuOpenRounded
- MenuRounded
- DateRange
- CallEnd
- Assignment
- KeyboardBackspace
- BluetoothSearching
- CameraAlt
- PlaylistAdd
- Favorite
- Bluetooth
- OpenInBrowser
- Loop
- FileCopyOutlined
- NavigateBefore
- MergeType
- Dvr
- PersonOutline
- PlayCircleFilledWhiteOutlined
- StoreMallDirectoryOutlined
- SupervisedUserCircleOutlined
- MonetizationOn
- OpenInNew
- ArrowDownward
- AddBox
- FilterList
- FirstPage
- LastPage
- ViewColumn
- Notifications
- DriveEta
- LocalTaxi
- Redo
- AccountTree
- TextFields
- SaveAlt
- ThumbDown
- ThumbUp
- LocalPhone
- VolumeUp
- VolumeDown
- Translate
- AddCircleOutlined
- RemoveCircleOutlined
- Router
- RemoveRedEye
- Chat
- Mood
- Mic
OtherRelated APIs
@material-ui/icons#CloseRounded JavaScript Examples
The following examples show how to use
@material-ui/icons#CloseRounded.
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: ModalAnime.jsx From animeworldz with MIT License | 4 votes |
export default function ModalAnime({
isOpen,
handleWatchClick,
handleClose,
data,
}) {
const theme = useTheme();
const classes = useStyles();
const fullScreen = useMediaQuery(theme.breakpoints.down("sm"));
return (
<div>
{data !== null ? (
<Dialog
fullScreen={fullScreen}
open={isOpen}
onClose={handleClose}
aria-labelledby="responsive-dialog-title"
PaperProps={{
style: {
backgroundImage: `linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.3) 100%),url(${data.img})`,
backgroundRepeat: "no-repeat",
backgroundSize: "cover",
color: "#e6e6e6",
},
}}
>
<DialogTitle id="responsive-dialog-title">
{data.title}
<IconButton
aria-label="close"
className={classes.closeButton}
onClick={handleClose}
>
<CloseRounded />
</IconButton>
</DialogTitle>
<DialogContent>
<DialogContentText
style={{ fontWeight: "bolder", color: "#e6e6e6" }}
>
Other Names: {data.other_name}
</DialogContentText>
</DialogContent>
<DialogContent>
<DialogContentText
style={{ fontWeight: "bolder", color: "#e6e6e6" }}
>
Genres: {data.genre.join(", ")}
</DialogContentText>
</DialogContent>
<DialogContent>
<DialogContentText
style={{ fontWeight: "bolder", color: "#e6e6e6" }}
>
Plot Summary :
</DialogContentText>
<DialogContentText
style={{ fontWeight: "bolder", color: "#e6e6e6" }}
>
{data.plot_summary}
</DialogContentText>
</DialogContent>
<DialogContent>
<DialogContentText
style={{ fontWeight: "bolder", color: "#e6e6e6" }}
>
Released: {data.released}
</DialogContentText>
</DialogContent>
<DialogContent>
<DialogContentText
style={{ fontWeight: "bolder", color: "#e6e6e6" }}
>
Status: {data.status}
</DialogContentText>
</DialogContent>
<DialogContent>
<DialogContentText
style={{ fontWeight: "bolder", color: "#e6e6e6" }}
>
Episodes: {data.episode_count}
</DialogContentText>
</DialogContent>
<DialogContent>
<DialogContentText
style={{ fontWeight: "bolder", color: "#e6e6e6" }}
>
Type: {data.type}
</DialogContentText>
</DialogContent>
<DialogActions>
<Button
autoFocus
variant="contained"
onClick={() => handleWatchClick(data.slug)}
color="default"
fullWidth
>
Start Watching
</Button>
</DialogActions>
</Dialog>
) : (
""
)}
</div>
);
}