Skip to content

Commit 39778e2

Browse files
committed
fix: update default icon color for unchecked switch state
1 parent 642ddb9 commit 39778e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shared/Components/Switch/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const getSwitchIconColor = ({
6868
variant,
6969
}: Pick<DTSwitchProps, 'iconColor' | 'isChecked' | 'variant'>): IconBaseColorType => {
7070
if (!isChecked) {
71-
return 'N200'
71+
return 'N500'
7272
}
7373

7474
return iconColor || (variant === 'theme' ? 'B500' : 'G500')

0 commit comments

Comments
 (0)