add: (wip) new filtering layout

DropDown component, ToggleButton component,
This commit is contained in:
Fiona Lena Urban 2025-05-13 20:43:15 +02:00
parent 38cd37cf74
commit 3fd26b4e66
11 changed files with 203 additions and 42 deletions

4
shared/DropDown.ts Normal file
View file

@ -0,0 +1,4 @@
export type DropDownElement = {
label: string
value: string | number
}