mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-21 05:41:17 -04:00
remove global .icon
style
This commit is contained in:
@@ -54,7 +54,11 @@ const CopyButton = forwardRef(function CopyButton(
|
||||
disabled={!!copied}
|
||||
ref={ref}
|
||||
>
|
||||
{copied ? <CheckOcticon fill="currentColor" /> : <ClipboardOcticon fill="currentColor" />}
|
||||
{copied ? (
|
||||
<CheckOcticon className={styles.icon} fill="currentColor" />
|
||||
) : (
|
||||
<ClipboardOcticon className={styles.icon} fill="currentColor" />
|
||||
)}
|
||||
</button>
|
||||
);
|
||||
});
|
||||
|
Reference in New Issue
Block a user