feat: add Dropdown component

This commit is contained in:
SauceyRed 2025-07-07 21:07:33 +02:00
parent 7dcd80cdf7
commit 1e0b8e2ba1
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462
2 changed files with 52 additions and 0 deletions

View file

@ -81,3 +81,9 @@ export interface ScrollPosition {
offsetTop: number,
offsetLeft: number
}
export interface DropdownOption {
name: string,
value: string | number,
callback: () => void
}