| 14 | import { Label } from "@/components/ui/label"; |
| 15 | |
| 16 | interface Theme { |
| 17 | value: string; |
| 18 | theme: string | undefined; |
| 19 | } |
| 20 | |
| 21 | const THEMES: Theme[] = [ |
| 22 | { value: "Default", theme: undefined }, |
nothing calls this directly
no outgoing calls
no test coverage detected