import { AlertTriangle, RefreshCcw } from "lucide-react"; // ui import { Button } from "@plane/ui"; type Props = { isRefreshing: boolean; onClick: () => void; }; export const IssuesErrorState: React.FC = (props) => { const { isRefreshing, onClick } = props; return (

There was an error in fetching widget details

); };