In my Angular app. I am using a input type checkbox. I am trying to change the size the checkbox. I am able to increase the size of the checkbox. but, when checkbox is checked the size of tick mark appears very small and does not fit to the size of the checkbox. How can i increase the size of tick mark so that it can fit to the checkbox.
HTML
<input type="checkbox" class="customInput">
css
.customInput {
width: 2em;
height: 2em;
}