Animate icon swaps with scale, blur, and fade transitions.
Installation
pnpm dlx shadcn@latest add @ncdai/icon-swap
Usage
import { IconSwap, IconSwapItem } from "@/components/icon-swap"<IconSwap>
<IconSwapItem key={isCopied ? "check" : "copy"}>
{isCopied ? <CheckIcon /> : <CopyIcon />}
</IconSwapItem>
</IconSwap>Change the key on IconSwapItem whenever the icon should swap.
Composition
Use the following composition to build an IconSwap
IconSwap
└── IconSwapItem
└── {icon}