Components
Loading preview...
An animated delete button with swipe-to-delete interaction.
npx shadcn@latest add https://21st.dev/r/0xUrvish/delete-button"use client";
import DeleteButton from "@/components/ui/delete-button";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<DeleteButton />
</div>
);
}