import Link from "next/link"; import {cn} from "@/lib/utils"; import {Plus} from "lucide-react"; import {forwardRef, HTMLAttributes} from "react"; type EmptyStatePlaceholderProps = { url?: string; onClick?: () => void; text: string; className?: string; } & HTMLAttributes; export const EmptyStatePlaceholder = forwardRef(({ url, onClick, text, className, ...props }, ref) => { const Container = (

{text}

); if (url) { return (
{Container}
); } return
{Container}
; }); EmptyStatePlaceholder.displayName = "EmptyStatePlaceholder";