File size: 349 Bytes
4782147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>
  );
}