link
tailwindcss/btn-component

Button Component

Create reusable button

component
button

Command

Examples

Button using @apply

<button class="btn-primary">Click</button>
  
  <style>
  .btn-primary {
    @apply px-4 py-2 rounded bg-blue-600 text-white font-medium hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-300;
  }
  </style>