Skip to content

Component/Dual

Two arcs turning in opposite directions.

Speed1000ms
Opacity100%
import { Dual } from "loading-dev"; export function DualDemo() {  return <Dual size={48} />;}

Size

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

import { Dual } from "loading-dev"; export function DualSize() {  return (    <div className="flex items-center gap-6">      <Dual size={16} />      <Dual size={24} />      <Dual 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 { Dual } from "loading-dev"; export function DualClassName() {  return <Dual 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 { Dual } from "loading-dev"; export function DualColor() {  return <Dual color="#f97316" size={32} />;}

Duration

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

import { Dual } from "loading-dev"; export function DualDuration() {  return <Dual duration={2000} size={32} />;}

State

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

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

Easing

Controls how the spinner rotates. linear moves at a constant speed, ease-in-out starts slowly, speeds up, then slows down.stacked combines the two so it changes speed without stopping. The default easing is linear.

import { Dual } from "loading-dev"; export function DualEasing() {  return (    <div className="flex items-center gap-6">      <Dual easing="linear" size={32} />      <Dual easing="ease-in-out" size={32} />      <Dual easing="stacked" size={32} />    </div>  );}

Cap

Controls how the ends of the stroke are drawn. round finishes them with a half circle, flat cuts them square. The default cap is round.

import { Dual } from "loading-dev"; export function DualCap() {  return (    <div className="flex items-center gap-6">      <Dual cap="round" size={32} />      <Dual cap="flat" size={32} />    </div>  );}