Loading
The Loading component is used to display a loading indicator on the screen.
Props
type(String, optional): Type of loading indicator. Possible values include "loading" and "loading-grow".color(String, optional): Color of the loading indicator. Possible values include "blue", "red", "black", "white", "yellow", and "grey".size(String, optional): Size of the loading indicator. Possible values include "sm" (small) and "lg" (large).
Example
Basic Usage
<Widget
  src={"flashui.near/widget/Loading"}
  componentProps={{
      type: "loading",
    }}
/>
 
<Widget
  src={"flashui.near/widget/Loading"}
  componentProps={{
      type: "loading-grow",
    }}
/>