({ icon: Icon }: { icon: Resource['icon'] })
| 94 | ]; |
| 95 | |
| 96 | function ResourceIcon({ icon: Icon }: { icon: Resource['icon'] }) { |
| 97 | return ( |
| 98 | <div className="flex h-7 w-7 items-center justify-center rounded-full bg-[#19182E]/5 ring-1 ring-[#19182E]/25 backdrop-blur-[2px] transition duration-300 group-hover:bg-white/50 group-hover:ring-[#7d79d8] dark:bg-white/7.5 dark:ring-white/15 dark:group-hover:bg-[#19182E]/10"> |
| 99 | <Icon className="h-5 w-5 fill-[#19182E]/10 stroke-[#19182E] transition-colors duration-300 group-hover:stroke-zinc-900 dark:fill-white/10 dark:stroke-[#fad000] dark:group-hover:fill-[#fad000]/10 dark:group-hover:stroke-[#fad000]" /> |
| 100 | </div> |
| 101 | ); |
| 102 | } |
| 103 | |
| 104 | function ResourcePattern({ |
| 105 | mouseX, |
nothing calls this directly
no outgoing calls
no test coverage detected