1
3
Block

Flip Button

PreviousNext

Button that flips when hovered.

import {
  FlipButton,
  FlipButtonBack,
  FlipButtonFront,
} from "@/components/ui/flip-button"

export function FlipButtonDemo() {
  return (
    <FlipButton className="bg-primary rounded-md px-5 py-2 text-white">
      <FlipButtonFront>Submit</FlipButtonFront>
      <FlipButtonBack>Processing...</FlipButtonBack>
    </FlipButton>
  )
}

Installation

pnpm dlx shadcn@latest add https://ebonui.com/r/flip-button.json

Usage

    <FlipButton className="rounded-md bg-primary px-5 py-2 text-white">
      <FlipButtonFront>Submit</FlipButtonFront>
      <FlipButtonBack>Processing...</FlipButtonBack>
    </FlipButton>