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 d4fd3d0 commit 1526c46Copy full SHA for 1526c46
src/components/Dashboard/Text.tsx
@@ -25,7 +25,7 @@ const Dashboard = memo<{ className: string }>(({ className }) => {
25
{
26
color: {
27
color: true,
28
- value: '#fff',
+ value: '#ffffff',
29
},
30
size: {
31
max: 96,
@@ -45,7 +45,7 @@ const Dashboard = memo<{ className: string }>(({ className }) => {
45
if (!IconRender) return null;
46
return (
47
<IconPreview className={styles.item} key={index}>
48
- <IconRender color={color === '#fff' ? undefined : color} size={size} />
+ <IconRender color={color === '#ffffff' ? undefined : color} size={size} />
49
</IconPreview>
50
);
51
})}
0 commit comments