| 192 | }; |
| 193 | |
| 194 | interface ThemeSwitcherProps { |
| 195 | value: Theme; |
| 196 | onChange: (theme: Theme) => void; |
| 197 | } |
| 198 | |
| 199 | export function ThemeSwitcher({ value, onChange }: ThemeSwitcherProps) { |
| 200 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected