Command Palette

Search for a command to run...

1.8k
Blog

Icon Swap

Animate icon swaps with scale, blur, and fade transitions.

Loading…

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}

References

Command Palette

Search for a command to run...