diff --git a/src/CopyButton.jsx b/src/CopyButton.jsx index fe8c1be..968132a 100644 --- a/src/CopyButton.jsx +++ b/src/CopyButton.jsx @@ -1,5 +1,7 @@ import React from "react"; +import copy_icon from "/copy_icon.png"; + export default function CopyButton({ source }) { let [shaking, setShaking] = React.useState(false); @@ -47,7 +49,7 @@ export default function CopyButton({ source }) { return ( ); }