blob: 691cc079e05ffabbe93a94b0c369d60bf9edd96b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
[@react.component]
let make = (~active) => {
<div
role="progressbar"
ariaBusy=true
className={
"inline-block w-5 h-5 rounded-full border-3 border-gray-500/50 border-t-white transition-opacity duration-100 linear "
++ (active ? "opacity-100 animate-spin" : "opacity-0")
}
/>;
};
|