1
0
pines/elements/checkbox.html

4 lines
273 B
HTML
Raw Permalink Normal View History

2023-05-24 05:29:02 -07:00
<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">
2023-06-24 04:46:47 -07:00
<label for="checkbox-id" class="ml-2 text-sm font-medium text-gray-900">Checkbox</label>
2023-05-24 05:29:02 -07:00
</div>