diff --git a/src/components/ui/Dropdown.astro b/src/components/ui/Dropdown.astro index b0a59e7..751d95e 100644 --- a/src/components/ui/Dropdown.astro +++ b/src/components/ui/Dropdown.astro @@ -2,12 +2,13 @@ import type { DropdownOptions } from "@utils/types"; interface Props { id: string; + classes?: string; options: DropdownOptions[]; } -const { id, options } = Astro.props; +const { id, options, classes } = Astro.props; --- - {options.map((el) => )} diff --git a/src/pages/settings/index.astro b/src/pages/settings/index.astro index b487ee6..0f4100a 100644 --- a/src/pages/settings/index.astro +++ b/src/pages/settings/index.astro @@ -37,6 +37,15 @@ Object.keys(SearchEngines).forEach((k) =>

Wisp Server

+