Components
Loading preview...
HeroUI Button with primary, secondary, tertiary, outline, ghost, danger and danger-soft variants, three sizes (sm/md/lg), icons and icon-only mode, pending/loading state, full-width, disabled state, social sign-in buttons and a render-prop children API. Works in both light and dark themes.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/heroui-buttonimport { Button } from "@/components/ui/heroui-button"
export default function Variants() {
return (
<div className="flex min-h-screen w-full flex-wrap items-center justify-center gap-3 p-8">
<Button variant="primary">Primary</Button>
<Button variant="secondary">Secondary</Button>
<Button variant="tertiary">Tertiary</Button>
<Button variant="outline">Outline</Button>
<Button variant="ghost">Ghost</Button>
<Button variant="danger">Danger</Button>
<Button variant="danger-soft">Danger Soft</Button>
</div>
)
}