blob: 40f6db3418b0a5642271d3ed6c553795df2f6f0a (
plain)
1
2
3
4
5
6
7
8
|
(ns tau.components.loading)
(defn loading-icon
[service-color & styles]
[:div.w-full.flex.justify-center.items-center.flex-auto
[:i.fas.fa-circle-notch.fa-spin
{:class (apply str (if (> (count styles) 1) (interpose " " styles) styles))
:style {:color service-color}}]])
|