Loader component is designed to display a loading icon along with a customizable label. It serves as a visual indicator for ongoing processes or data retrieval. Developers can easily integrate this loader into their applications by using a simple HTML tag with attributes to customize the appearance and provide context through the label.
loader="icon"
: Specifies the type of loader.label
: Customizable text label for the loader.The Spinner Loader component displays a spinning animation indicating loading.
<div loader="icon" label="loading"></div>
<div loader="spinner" label="loading"></div>
loader="spinner"
: Specifies the type of loader.label
: Customizable text label for the loader.The Inline Loader component is a simple loading indicator without any specific shape.
<div loader="inline"></div>
loader="inline"
: Specifies the type of loader.The Inline Synchronous Loader component is designed for synchronous operations with a non-intrusive loading indicator.
<div loader="inline-synk"></div>
loader="inline-synk"
: Specifies the type of loader.