Refactor component imports for consistency; streamline Menu and SideMenu components; enhance TableRow and TableWithPagination for better data handling; update Header component for improved user experience.

This commit is contained in:
2025-10-30 04:54:16 -04:00
parent 4e8abcabfd
commit 5a86c5e578
14 changed files with 99 additions and 129 deletions

View File

@@ -5,10 +5,7 @@ import * as styled from 'styled-components';
import {Link} from 'components/ui';
import {theme, paddings} from 'components/shared/theme';
const {
colors,
primaryThemeColor
} = theme;
const {colors, primaryThemeColor} = theme;
export const MenuLayout = styled.default.div`
display: flex;
@@ -37,4 +34,4 @@ export const MenuItem = styled.default(Link)`
font-size: 22px;
margin: 0 ${paddings.medium} 0 0;
}
`;
`;