Button Copy
Button Copy is a React and Tailwind CSS button component from SmoothUI, licensed MIT. Copy it and paste it into your project.
SmoothUI
MIT
buttons
What it is
Button Copy is a React and Tailwind CSS button component from SmoothUI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i motion lucide-react
Licence
This component comes from SmoothUI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Button Copy
"use client";
import { Check, Copy, LoaderCircle } from "lucide-react";
import { AnimatePresence, motion, useReducedMotion } from "motion/react";
import { type ReactNode, useCallback, useState } from "react";
export interface ButtonCopyProps {
className?: string;
disabled?: boolean;
duration?: number;
idleIcon?: ReactNode;
loadingDuration?: number;
loadingIcon?: ReactNode;
onCopy?: () => Promise<void> | void;
successIcon?: ReactNode;
}
const defaultIcons = {
idle: <Copy size={16} />,
loading: <LoaderCircle className="animate-spin" size={16} />,
success: <Check size={16} />,
};
export default function ButtonCopy({
onCopy,
idleIcon = defaultIcons.idle,
loadingIcon = defaultIcons.loading,
successIcon = defaultIcons.success,
className = "",
duration = 2000,
loadingDuration = 1000,
disabled = false,
}: ButtonCopyProps) {
const [buttonState, setButtonState] = useState<
"idle" | "loading" | "success"
>("idle");
const shouldReduceMotion = useReducedMotion();
const handleClick = useCallback(async () => {
setButtonState("loading");
if (onCopy) {
await onCopy();
}
setTimeout(() => {
setButtonState("success");
}, loadingDuration);
setTimeout(() => {
setButtonState("idle");
}, loadingDuration + duration);
}, [onCopy, loadingDuration, duration]);
const icons = {
idle: idleIcon,
loading: loadingIcon,
success: successIcon,
};
const ariaLabels = {
idle: "Copy",
loading: "Copying...",
success: "Copied",
};
return (
<div className="flex justify-center">
<button
aria-label={ariaLabels[buttonState]}
aria-live="polite"
className={`relative min-h-[44px] w-auto min-w-[44px] cursor-pointer overflow-hidden rounded-full border bg-background p-3 focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 ${className}`}
disabled={buttonState !== "idle" || disabled}
onClick={handleClick}
type="button"
>
<AnimatePresence initial={false} mode="popLayout">
<motion.span
animate={
shouldReduceMotion
? { opacity: 1 }
: { filter: "blur(0px)", opacity: 1, y: 0 }
}
className="flex w-full items-center justify-center"
exit={
shouldReduceMotion
? { opacity: 0, transition: { duration: 0 } }
: { filter: "blur(10px)", opacity: 0, y: 25 }
}
initial={
shouldReduceMotion
? { opacity: 1 }
: { filter: "blur(10px)", opacity: 0, y: -25 }
}
key={buttonState}
transition={
shouldReduceMotion
? { duration: 0 }
: { bounce: 0, duration: 0.25, type: "spring" as const }
}
>
{icons[buttonState]}
</motion.span>
</AnimatePresence>
</button>
</div>
);
}