()
| 2 | import { Loader2 } from "lucide-react"; |
| 3 | |
| 4 | export default function Loader() { |
| 5 | return ( |
| 6 | <div |
| 7 | role="status" |
| 8 | aria-live="polite" |
| 9 | className="flex justify-center items-center flex-col h-[calc(100vh-2rem)] lg:h-[calc(100vh-3rem)]" |
| 10 | > |
| 11 | <Loader2 className="h-16 w-16 animate-spin text-primary" /> |
| 12 | <span className="sr-only">Loading...</span> |
| 13 | </div> |
| 14 | ); |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…