diff --git a/.changeset/real-days-exist.md b/.changeset/real-days-exist.md new file mode 100644 index 00000000..9e2e4500 --- /dev/null +++ b/.changeset/real-days-exist.md @@ -0,0 +1,5 @@ +--- +"@status-im/components": patch +--- + +fix toast icon color diff --git a/packages/components/src/toast/toast.tsx b/packages/components/src/toast/toast.tsx index dded10d1..dd0c6058 100644 --- a/packages/components/src/toast/toast.tsx +++ b/packages/components/src/toast/toast.tsx @@ -26,7 +26,7 @@ const Toast = (props: Props) => { const renderIcon = () => { if (!props.type) { - return cloneElement(props.icon, { color: '$white-70' }) + return cloneElement(props.icon, { color: '$white/70' }) } if (props.type === 'positive') {