()
| 42 | } |
| 43 | |
| 44 | export function ColorModeIcon() { |
| 45 | const { colorMode } = useColorMode(); |
| 46 | return colorMode === "dark" ? <LuMoon /> : <LuSun />; |
| 47 | } |
| 48 | |
| 49 | interface ColorModeButtonProps extends Omit<IconButtonProps, "aria-label"> {} |
| 50 |
nothing calls this directly
no test coverage detected