1 variant
Flip Card
A card that flips between a front and back face on hover or click.
Footwear
Aria Runner
$128 · Click for details
Footwear
Aria Runner
Lightweight knit upper, responsive foam midsole, and a recycled rubber outsole — built for daily miles.
$128Add to cart
import { FlipCard } from "@/components/registry/flip-card";
export function ProductCard() {
return (
<FlipCard
trigger="click"
front={<img src="/aria-runner.jpg" alt="Aria Runner" />}
back={<ProductDetails price={128} description="..." />}
/>
);
}69 more lines ship with an easeUI Pro license.
Buy a licenseInstall
$ bunx --bun shadcn add @easeui-pro/flip-card
Props
frontRequiredReactNodeThe face shown at rest.
backRequiredReactNodeThe face shown once flipped.
trigger"hover" | "click"Default "hover"Hover becomes tap on a device with no pointer, so the back face is never unreachable.
classNamestringMerged last, so anything passed here wins over the component's own classes.