Tables
Simple Table
| Name | Role | Status |
|---|---|---|
| Jane Doe | Designer | Active |
HTML
<table class="min-w-full divide-y divide-gray-200 border">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Name</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Role</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Status</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap">Jane Doe</td>
<td class="px-6 py-4 whitespace-nowrap">Designer</td>
<td class="px-6 py-4 whitespace-nowrap">Active</td>
</tr>
</tbody>
</table>