module Gargantext.Components.LoadingSpinner where import Reactix as R import Reactix.DOM.HTML as H thisModule :: String thisModule = "Gargantext.Components.LoadingSpinner" type Props = () loadingSpinner :: Record Props -> R.Element loadingSpinner props = R.createElement loadingSpinnerCpt props [] loadingSpinnerCpt :: R.Component Props loadingSpinnerCpt = R.staticComponentWithModule thisModule "LoadingSpinner" cpt where -- cpt _ _ = H.i {className: "spinner fa fa-smile-o fa-spin fa-3x fa-fw"} [H.text ""] -- cpt _ _ = H.i {className: "fa fa-globe fa-spin fa-3x fa-fw"} [H.text ""] -- cpt _ _ = H.i {className: "fa fa-circle-o-notch fa-spin fa-3x fa-fw"} [H.text ""] cpt _ _ = H.i {className: "fa fa-spinner fa-pulse fa-3x fa-fw"} [H.text ""]