✨(react) add Pagination component
In order to create a DataGrid we first need a fully working pagination component. It comes with multiples working examples in the documentation.
This commit is contained in:
19
packages/react/src/components/Pagination/index.scss
Normal file
19
packages/react/src/components/Pagination/index.scss
Normal file
@@ -0,0 +1,19 @@
|
||||
.c__pagination {
|
||||
display: flex;
|
||||
gap: 2rem;
|
||||
|
||||
&__list {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border: 1px var(--c--theme--colors--greyscale-200) solid;
|
||||
border-radius: 2px;
|
||||
padding: var(--c--theme--spacings--st);
|
||||
background: var(--c--theme--colors--greyscale-000);
|
||||
}
|
||||
|
||||
&__goto {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user