🎉 We are thrilled to introduce FastStore v2. If you are looking for documentation of the previous version of FastStore, please refer to FastStore v1.

Loader

Loaders provide a visual cue that an action is being processed.

Overview


Import

Import the component from @faststore/ui

import { Loader } from '@faststore/ui'

Import Styles

import '@faststore/ui/src/components/atoms/Loader/styles.scss'

Usage

<Loader />

Props

NameTypeDescriptionDefault
testIdstringID to find this component in testing tools (e.g.: cypress, testing library, and jest).fs-loader
variant"light" | "dark"Specifies the component color variant.dark

Design Tokens

Local tokenDefault value/Global token linked
--fs-loader-gapvar(--fs-spacing-0)
--fs-loader-animation-functionvar(--fs-transition-function)
--fs-loader-animation-timingvar(--fs-transition-timing)

Nested Elements

Loader Item

Local tokenDefault value/Global token linked
--fs-loader-item-widthvar(--fs-spacing-0)
--fs-loader-item-heightvar(--fs-loader-item-width)
--fs-loader-item-border-radiusvar(--fs-border-radius-circle)
--fs-loader-item-initial-opacity.6

Variants

Dark (Default)

<Loader />
Local tokenDefault value/Global token linked
--fs-loader-dark-item-bkg-color
var(--fs-color-primary-bkg-active)

Light

<Loader variant="light" />
Local tokenDefault value/Global token linked
--fs-loader-light-item-bkg-color
var(--fs-color-tertiary-bkg-light)

Customization

For further customization, you can use the following data attributes:

data-fs-loader

data-fs-loader-variant="light" | "dark"


Related components

  • Button

    Buttons indicate actions that users can take.

    See more