better-chatbot / src /components /admin /back-button-skeleton.tsx
Bot
Initial commit for HF Spaces
05c5ed5
Raw
History Blame Contribute Delete
349 Bytes
import { Button } from "ui/button";
import { ArrowLeft } from "lucide-react";
export function BackButtonSkeleton() {
return (
<Button
variant="ghost"
size="sm"
className="hover:bg-muted opacity-50 cursor-not-allowed"
disabled
>
<ArrowLeft className="mr-2 h-4 w-4" />
Back to Users
</Button>
);
}