We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc4804a commit 67bf6dcCopy full SHA for 67bf6dc
src/screens/home/markdown/items/MarkdownCode.tsx
@@ -53,8 +53,8 @@ export const MarkdownCode: React.FC<MarkdownCodeProps> = ({
53
<Text className="text-base">{lang.toUpperCase()}</Text>
54
</XStack>
55
<XStack className="gap-2">
56
- {isHtml && <IconButton icon={<Eye size={16} color="$gray60" />} onPress={handlePreview} />}
57
- <IconButton icon={<Copy size={16} color="$gray60" />} onPress={() => onCopy(text)} />
+ {isHtml && <IconButton icon={<Eye size={16} />} onPress={handlePreview} />}
+ <IconButton icon={<Copy size={16} />} onPress={() => onCopy(text)} />
58
59
60
<CodeHighlighter
0 commit comments