()
| 3 | import { useTheme } from './ThemeProvider' |
| 4 | |
| 5 | function SunIcon() { |
| 6 | return ( |
| 7 | <svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.8" strokeLinecap="round" strokeLinejoin="round"> |
| 8 | <circle cx="12" cy="12" r="5" /> |
| 9 | <line x1="12" y1="1" x2="12" y2="3" /> |
| 10 | <line x1="12" y1="21" x2="12" y2="23" /> |
| 11 | <line x1="4.22" y1="4.22" x2="5.64" y2="5.64" /> |
| 12 | <line x1="18.36" y1="18.36" x2="19.78" y2="19.78" /> |
| 13 | <line x1="1" y1="12" x2="3" y2="12" /> |
| 14 | <line x1="21" y1="12" x2="23" y2="12" /> |
| 15 | <line x1="4.22" y1="19.78" x2="5.64" y2="18.36" /> |
| 16 | <line x1="18.36" y1="5.64" x2="19.78" y2="4.22" /> |
| 17 | </svg> |
| 18 | ) |
| 19 | } |
| 20 | |
| 21 | function MoonIcon() { |
| 22 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected