Loading
Spinner

Spinner

Animated indicator for loading and waiting states

Anatomy

import { Spinner } from "@lualtek/react-components";
 
export default () => {
  return <Spinner />;
};

API Reference

export type SpinnerProps = SVGAttributes<SVGElement> & {
  /**
   * Set the size of the spinner
   * @default 'big'
   */
  dimension?: "small" | "regular" | "big";
 
  /**
   * Override the color of the spinner
   */
  color?: string;
};