Button Disabled
<!-- Disabled Solid Button -->
<button disabled class="inline-flex items-center justify-center px-4 py-2 font-medium text-white bg-blue-400 rounded-lg cursor-not-allowed opacity-70">
Disabled Button
</button>
<!-- Disabled Outline Button -->
<button disabled class="inline-flex items-center justify-center px-4 py-2 font-medium text-blue-400 bg-transparent border border-blue-400 rounded-lg cursor-not-allowed opacity-70">
Disabled Outline
</button>
<!-- Visually Disabled (not using disabled attribute) -->
<button class="inline-flex items-center justify-center px-4 py-2 font-medium text-white bg-gray-400 rounded-lg cursor-not-allowed opacity-70">
Visually Disabled
</button>
Copied to clipboard