fix: radios buttons to use primary color (#6576)

This commit is contained in:
sanish chirayath
2025-12-31 13:37:27 +05:30
committed by GitHub
parent ac0b69787d
commit 1ed9d61ee8

View File

@@ -40,6 +40,11 @@ const StyledWrapper = styled.div`
.muted {
color: ${(props) => props.theme.colors.text.muted};
}
input[type='radio'] {
cursor: pointer;
accent-color: ${(props) => props.theme.primary.solid};
}
`;
export default StyledWrapper;