Pure CSS custom checkbox.
.checkbox { appearance: none; width: 20px; height: 20px; border: 2px solid #cbd5e1; border-radius: 4px; cursor: pointer; display: inline-grid; place-content: center; transition: 150ms; }
.checkbox::before { content: ""; width: 12px; height: 12px; transform: scale(0); transition: 120ms transform ease-in-out; box-shadow: inset 20px 20px #0ea5e9; clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); }
.checkbox:checked { border-color: #0ea5e9; }
.checkbox:checked::before { transform: scale(1); }