import { LinkIcon } from "@heroicons/react/24/outline"; import { memo } from "react"; import { Card } from "@/components/Shared/UI"; interface EmptyOembedProps { url: string; hideLoader?: boolean; } const EmptyOembed = ({ url, hideLoader = false }: EmptyOembedProps) => { return (
{url}
{!hideLoader && (
Loading...
)}
); }; export default memo(EmptyOembed);