Skip to content

Component/Flip

A square flipping over on one axis, then the other.

Speed1200ms
Opacity100%
import { Flip } from "loading-dev"; export function FlipDemo() {  return <Flip size={48} />;}

Size

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

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

Duration

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

import { Flip } from "loading-dev"; export function FlipDuration() {  return <Flip duration={2400} size={32} />;}

State

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

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