Components
Loading preview...
An interactive editable chip component with smooth animations for editing.
npx shadcn@latest add https://21st.dev/r/quantvansh/editable-chip'use client';
import { EditableChip } from "@/components/ui/editable-chip";
export default function EditableChipDemo() {
return (
<EditableChip
defaultLabel="Favorites"
onChange={(value) => console.log('Saved:', value)}
/>
);
}