Skip to content

Component/Slide

Three dots sliding into the empty corner of a square.

Speed2400ms
Opacity100%
import { Slide } from "loading-dev"; export function SlideDemo() {  return <Slide size={48} />;}

Size

Sets the spinner’s dimensions in pixels. The default value is 20

import { Slide } from "loading-dev"; export function SlideSize() {  return (    <div className="flex items-center gap-6">      <Slide size={16} />      <Slide size={24} />      <Slide size={40} />    </div>  );}

Custom Classes

You can use a custom className in case you need to tweak the spinner in a specific way that the library doesn’t provide.

import { Slide } from "loading-dev"; export function SlideClassName() {  return <Slide className="opacity-40" size={32} />;}

Color

The loader inherits currentColor from the parent by default. You can tint it in any way you want. It accepts any valid CSS color.

import { Slide } from "loading-dev"; export function SlideColor() {  return <Slide color="#f97316" size={32} />;}

Duration

Sets the speed in ms. Higher values are slower, smaller values are faster.

import { Slide } from "loading-dev"; export function SlideDuration() {  return <Slide duration={4800} size={32} />;}

State

Pauses or resumes the animation and exposes the state of the spinner.

import { Slide } from "loading-dev"; export function SlidePlayState() {  return <Slide playState="paused" size={32} />;}