()
| 2 | import Link from 'next/link' |
| 3 | |
| 4 | export const RequiresTailwind = () => { |
| 5 | return ( |
| 6 | <Link |
| 7 | href="https://tailwindcss.com" |
| 8 | target="_blank" |
| 9 | rel="noopener noreferrer" |
| 10 | > |
| 11 | <div className="inline-flex h-6 items-center justify-center gap-1 rounded-full border border-cyan-100 bg-cyan-100/30 px-1"> |
| 12 | <Image |
| 13 | src="/images/tailwind.svg" |
| 14 | alt="Tailwind CSS" |
| 15 | width={18} |
| 16 | height={18} |
| 17 | /> |
| 18 | <div className="text-xs font-medium text-cyan-500">Tailwind CSS</div> |
| 19 | </div> |
| 20 | </Link> |
| 21 | ) |
| 22 | } |
| 23 | |
| 24 | export const RequiresFramerMotion = () => { |
| 25 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected