Add pagination components and update some other components

This commit is contained in:
2023-11-29 14:31:06 +07:00
parent f5ed5d937a
commit d843667b01
8 changed files with 163 additions and 13 deletions
@@ -43,4 +43,19 @@ const StyledHeader = styled(CommonRow)`
font-weight: 600;
`;
export { StyledBody, StyledHeader, StyledRow, StyledTable };
const StyledFooter = styled.div`
display: flex;
justify-content: center;
padding: 15px;
background-color: var(--footer-table-color);
border-bottom-left-radius: var(--radius-md);
border-bottom-right-radius: var(--radius-md);
border-top: 1px solid var(--border-color);
&:not(:has(*)) {
display: none;
}
`;
export { StyledBody, StyledHeader, StyledRow, StyledTable, StyledFooter };