This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
tailwindui/react/components/application-ui/elements/buttons/soft_buttons.jsx

37 lines
1.1 KiB
React
Raw Normal View History

2024-01-24 19:02:44 +08:00
export default function Example() {
return (
<>
<button
type="button"
className="rounded bg-indigo-50 px-2 py-1 text-xs font-semibold text-indigo-600 shadow-sm hover:bg-indigo-100"
>
Button text
</button>
<button
type="button"
className="rounded bg-indigo-50 px-2 py-1 text-sm font-semibold text-indigo-600 shadow-sm hover:bg-indigo-100"
>
Button text
</button>
<button
type="button"
className="rounded-md bg-indigo-50 px-2.5 py-1.5 text-sm font-semibold text-indigo-600 shadow-sm hover:bg-indigo-100"
>
Button text
</button>
<button
type="button"
className="rounded-md bg-indigo-50 px-3 py-2 text-sm font-semibold text-indigo-600 shadow-sm hover:bg-indigo-100"
>
Button text
</button>
<button
type="button"
className="rounded-md bg-indigo-50 px-3.5 py-2.5 text-sm font-semibold text-indigo-600 shadow-sm hover:bg-indigo-100"
>
Button text
</button>
</>
)
}