1
0
pines/elements/checkbox.html
2023-06-24 14:46:47 +03:00

4 lines
273 B
HTML

<div class="flex items-center mb-4">
<input id="checkbox-id" type="checkbox" class="w-4 h-4 bg-gray-100 border-gray-300 rounded text-neutral-900 focus:ring-neutral-900">
<label for="checkbox-id" class="ml-2 text-sm font-medium text-gray-900">Checkbox</label>
</div>