The components will be styled with Tailwind using classes, so you simply have to copy and paste.
npm create astro@latest
npx astro add tailwind
<button class="bg-orange-300 mr-2 mb-2 px-2.5 py-1.5
text-black font-medium text-center
justify-center inline-flex items-center flex-row
rounded-lg border gap-x-2 opacity-90
cursor-pointer hover:bg-orange-500 hover:text-white
hover:opacity-100 hover:bg-black-600
hover:scale-110 hover:shadow-lg
dark:focus:ring-black-300
focus:ring-2 focus:outline-none focus:ring-black-30
transition-all duration-200 ease-in-out scale-90">
Button
</button>