Components
Round attachment trigger button — plus or paperclip preset, or any custom icon. Self-contained port from 21st.dev Agent Elements.
npx shadcn@latest add https://21st.dev/r/21stdev/attachment-buttonLoading preview...
import { AttachmentButton } from "@/components/ui/attachment-button";
export default function Demo() {
return (
<div className="flex h-full w-full items-center justify-center p-8">
<AttachmentButton onClick={() => console.log("clicked")} />
</div>
);
}
Loading preview...
Loading preview...