refactor: use color from theme

This commit is contained in:
Sammy Teillet
2023-04-18 17:37:20 +02:00
parent a855c474a0
commit 8701d752d8

View File

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