mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-24 03:09:52 -06:00
20 lines
678 B
TypeScript
20 lines
678 B
TypeScript
import { XCircleIcon } from "@heroicons/react/24/solid";
|
|
|
|
export const ErrorComponent: React.FC = ({}) => {
|
|
return (
|
|
<div className="rounded-lg bg-red-50 p-4">
|
|
<div className="flex">
|
|
<div className="flex-shrink-0">
|
|
<XCircleIcon className="h-12 w-12 text-red-400" aria-hidden="true" />
|
|
</div>
|
|
<div className="ml-3">
|
|
<h3 className="text-sm font-medium text-red-800">Error loading resources</h3>
|
|
<div className="mt-2 text-sm text-red-700">
|
|
<p>This resource doesn't exist or you don't have the neccessary rights to access it.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|