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 CustomRenderFunction() {
return (
<div className="flex min-h-screen w-full items-center justify-center p-8">
<Button variant="primary">
{({ isPressed }) => (isPressed ? "Pressed!" : "Press me")}
</Button>
</div>
)
}