lightswind
Version:
A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.
13 lines (12 loc) • 484 B
TypeScript
interface AnimatedCopyButtonProps {
/** The text that will be copied to the clipboard */
textToCopy: string;
/** Optional classname for the button */
className?: string;
/** Size of the button */
size?: "sm" | "md" | "lg";
/** Optional callback fired when copied */
onCopy?: () => void;
}
export declare function AnimatedCopyButton({ textToCopy, className, size, onCopy, }: AnimatedCopyButtonProps): import("react/jsx-runtime").JSX.Element;
export {};