10 lines
467 B
TypeScript
10 lines
467 B
TypeScript
export function Loader() {
|
|
return (
|
|
<div class="grid grid-cols-2 grid-rows-2 w-20 h-20 loader m-auto">
|
|
<div class="loader-ball w-5 h-5 rounded-full"></div>
|
|
<div class="loader-ball w-5 h-5 rounded-full" style={{'--loader-delay': '-1s'}}></div>
|
|
<div class="loader-ball w-5 h-5 rounded-full" style={{'--loader-delay': '-1.7s'}}></div>
|
|
<div class="loader-ball w-5 h-5 rounded-full" style={{'--loader-delay': '-2.6s'}}></div>
|
|
</div>
|
|
)
|
|
} |