diff options
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 | } | ||