Skip to content

Commit

Permalink
remove === check
Browse files Browse the repository at this point in the history
  • Loading branch information
wsdt committed Nov 15, 2023
1 parent 78125af commit b95c1a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import styled from 'styled-components'
const StyledSvg = styled(Svg)`
display: flex;
svg {
fill: ${({ theme }) => theme.name === 'light' ? theme.colors.gray[ 600 ] : theme.colors.gray[ 100 ]}
fill: ${({ theme }) => theme.name == 'light' ? theme.colors.gray[ 600 ] : theme.colors.gray[ 100 ]}
}
`

Expand Down

0 comments on commit b95c1a7

Please sign in to comment.