Implement pagination for table user and room

This commit is contained in:
2023-11-29 16:48:24 +07:00
parent faef6758f8
commit 50e607850d
7 changed files with 32 additions and 42 deletions
+11 -1
View File
@@ -1,3 +1,4 @@
import Button from '@commonStyle/Button';
import styled from 'styled-components';
const StyledForm = styled.form`
@@ -35,4 +36,13 @@ const Error = styled.p`
width: 220px;
`;
export { StyledForm, StyledActionBtn, StyledFormRow, Label, Error };
const FormBtn = styled(Button)`
width: 100%;
&:disabled,
&[disabled] {
background-color: var(--disabled-btn-color);
}
`;
export { StyledForm, StyledActionBtn, StyledFormRow, Label, Error, FormBtn };