12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
|
|
import Pagination from '@mui/material/Pagination';
|
||
|
|
import Stack from '@mui/material/Stack';
|
||
|
|
|
||
|
|
export default function PaginationRounded() {
|
||
|
|
return (
|
||
|
|
<Stack spacing={2}>
|
||
|
|
<Pagination count={10} shape="rounded" />
|
||
|
|
<Pagination count={10} variant="outlined" shape="rounded" />
|
||
|
|
</Stack>
|
||
|
|
);
|
||
|
|
}
|