import { faPlus } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import React from "react"; import useModalStore from "@/store/modals"; type Props = { text?: string; }; export default function NoLinksFound({ text }: Props) { const { setModal } = useModalStore(); return (
{text || "You haven't created any Links Here"}