Skip to content

Commit 12f03d2

Browse files
Remove text-white class from copy button icons
Co-authored-by: rahul.chhabria <[email protected]>
1 parent 5c94484 commit 12f03d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/copyForLLMButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ export default function CopyForLLMButton() {
5454
data-mdast="ignore"
5555
>
5656
{copied ? (
57-
<CheckIcon width="24" height="24" className="text-white" />
57+
<CheckIcon width="24" height="24" />
5858
) : (
59-
<ClipboardCopyIcon width="24" height="24" className="text-white" />
59+
<ClipboardCopyIcon width="24" height="24" />
6060
)}
6161
{/* Visually hidden text for screen readers */}
6262
<span className="sr-only">{copied ? 'Copied' : 'Copy for LLM'}</span>

0 commit comments

Comments
 (0)