This commit is contained in:
shadcn
2026-03-04 10:55:10 +04:00
parent 37ff1a3d12
commit bd1d93bbbc
2 changed files with 2 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ import { after, NextResponse, type NextRequest } from "next/server"
import { track } from "@vercel/analytics/server"
import { parseDesignSystemConfig } from "@/app/(create)/init/parse-config"
import { buildV0Payload } from "@/app/(create)/lib/build-payload"
import { buildV0Payload } from "@/app/(create)/lib/v0"
export async function GET(request: NextRequest) {
try {

View File

@@ -56,6 +56,7 @@ function StatusBadge({ icon }: { icon: string }) {
**Correct:**
```tsx
// Import from the project's configured iconLibrary (e.g. lucide-react, @tabler/icons-react).
import { CheckIcon } from "lucide-react"
function StatusBadge({ icon: Icon }: { icon: React.ComponentType }) {