import { IconSubmissionContent } from "@/components/icon-submission-form" import { Button } from "@/components/ui/button" import { AlertTriangle, ArrowLeft, PlusCircle } from "lucide-react" import Link from "next/link" export default function NotFound({ error, }: { error: Error & { digest?: string } }) { return (

Icon not found

The icon you are looking for could not be found or there was an error loading it.

Can't find what you're looking for?

Contribute to our icon collection by suggesting a new icon or improving an existing one.

) }