I am looking to customize the style of the ionic radio component similar to the image shown in this link: https://i.sstatic.net/zjg3N.png
In Ionic 3, I was able to style ion-radio by overriding the CSS as shown below:
.radio-md .radio-icon{
display: none;
}
.item-md{
border: 1px solid color($colors,divider);
border-radius: 6px;
}
.item-radio-checked{
border: 1px solid color($colors,primary);
}
Now with Ionic 4, I'm unsure how to achieve the same custom styling for ion-radio components.
Does anyone know how to style ion-radio using Ionic v4?