refactor: use color from theme

This commit is contained in:
Sammy Teillet 2023-04-18 17:37:20 +02:00
parent a855c474a0
commit 8701d752d8
No known key found for this signature in database
GPG Key ID: 687E513E74D28696

View File

@ -8,7 +8,7 @@ type OwnProps = {
const StyledContainer = styled.span` const StyledContainer = styled.span`
input[type='checkbox'] { input[type='checkbox'] {
accent-color: #1111b7; accent-color: ${(props) => props.theme.purple};
} }
`; `;