(props: React.ComponentPropsWithoutRef<'svg'>)
| 15 | } |
| 16 | |
| 17 | function MoonIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 18 | return ( |
| 19 | <svg viewBox="0 0 20 20" fill="none" aria-hidden="true" {...props}> |
| 20 | <path d="M15.224 11.724a5.5 5.5 0 0 1-6.949-6.949 5.5 5.5 0 1 0 6.949 6.949Z" /> |
| 21 | </svg> |
| 22 | ) |
| 23 | } |
| 24 | |
| 25 | // create zustand store: |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected