MCPcopy Create free account
hub / github.com/VGabriel45/SolidityVisualizer / CopyButtonProps

Interface CopyButtonProps

src/components/copy-button.tsx:11–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9} from "~/components/ui/tooltip";
10
11interface CopyButtonProps {
12 onClick: () => void;
13 loading?: boolean;
14}
15
16export function CopyButton({ onClick, loading = false }: CopyButtonProps) {
17 const [copied, setCopied] = useState(false);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected