MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / RequiresTailwind

Function RequiresTailwind

src/components/Requires.tsx:4–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import Link from 'next/link'
3
4export 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
24export const RequiresFramerMotion = () => {
25 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected