()
| 1 | import React from "react" |
| 2 | |
| 3 | export default function Loader() { |
| 4 | return ( |
| 5 | <div |
| 6 | className="inline-block h-12 w-12 animate-spin rounded-full border-4 border-solid border-current border-e-transparent align-[-0.125em] text-surface motion-reduce:animate-[spin_1.5s_linear_infinite] dark:text-white" |
| 7 | role="status" |
| 8 | > |
| 9 | <span className="!absolute !-m-px !h-px !w-px !overflow-hidden !whitespace-nowrap !border-0 !p-0 ![clip:rect(0,0,0,0)]"> |
| 10 | Loading... |
| 11 | </span> |
| 12 | </div> |
| 13 | ) |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected