47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
import React from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import Pagination from '@mui/material/Pagination';
|
|
import PaginationItem from '@mui/material/PaginationItem';
|
|
import Stack from '@mui/material/Stack';
|
|
import ArrowBackIcon from '@mui/icons-material/ArrowBack';
|
|
import ArrowForwardIcon from '@mui/icons-material/ArrowForward';
|
|
|
|
export default function CustomIcons() {
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
CustomIcons
|
|
</Typography>
|
|
|
|
<Stack spacing={2}>
|
|
<Pagination
|
|
count={10}
|
|
renderItem={(item) => (
|
|
<PaginationItem
|
|
slots={{ previous: ArrowBackIcon, next: ArrowForwardIcon }}
|
|
{...item}
|
|
/>
|
|
)}
|
|
/>
|
|
</Stack>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|