diff options
| author | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2024-11-25 09:20:01 +0100 |
|---|---|---|
| committer | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2024-11-25 09:20:01 +0100 |
| commit | 207a2540101b2f216bde94ae53286d2e52f044e3 (patch) | |
| tree | 0d36c7d3ea8b87f654aa47384d16f1f8f96a0157 /frontend/src/types | |
| parent | feat/rankings: optimize Steam ID comparison (#236) (diff) | |
| download | lphub-207a2540101b2f216bde94ae53286d2e52f044e3.tar.gz lphub-207a2540101b2f216bde94ae53286d2e52f044e3.tar.bz2 lphub-207a2540101b2f216bde94ae53286d2e52f044e3.zip | |
frontend: begin port to css modules, sidebar refactor
Diffstat (limited to 'frontend/src/types')
| -rw-r--r-- | frontend/src/types/Sidebar.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/types/Sidebar.ts b/frontend/src/types/Sidebar.ts new file mode 100644 index 0000000..71a7571 --- /dev/null +++ b/frontend/src/types/Sidebar.ts | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | import { BookIcon, FlagIcon, HelpIcon, HomeIcon, LogoIcon, PortalIcon, SearchIcon, UploadIcon } from '@images/Images'; | ||
| 2 | |||
| 3 | export interface Button { | ||
| 4 | img: string; | ||
| 5 | text: string; | ||
| 6 | url: string; | ||
| 7 | } | ||
| 8 | |||
| 9 | export interface Buttons { | ||
| 10 | top: Button[]; | ||
| 11 | bottom: Button[]; | ||
| 12 | } | ||