We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c94484 commit 12f03d2Copy full SHA for 12f03d2
src/components/copyForLLMButton.tsx
@@ -54,9 +54,9 @@ export default function CopyForLLMButton() {
54
data-mdast="ignore"
55
>
56
{copied ? (
57
- <CheckIcon width="24" height="24" className="text-white" />
+ <CheckIcon width="24" height="24" />
58
) : (
59
- <ClipboardCopyIcon width="24" height="24" className="text-white" />
+ <ClipboardCopyIcon width="24" height="24" />
60
)}
61
{/* Visually hidden text for screen readers */}
62
<span className="sr-only">{copied ? 'Copied' : 'Copy for LLM'}</span>
0 commit comments