Skip to main content

Starwind UI v1.3.1 is now available! Get started

Button

Installation

The Button component can also function as a link (<a> tag) by providing an href prop.

Usage

variant

size

radius

Info

With v2.0.0 of this component, it no longer has a radius prop, and instead the classes you pass in will be merged with the component’s default classes using tailwind-variants. This means you can simply pass the class rounded-full or similar.

API Reference

PropTypeDefault
variant"default" | "primary" | "secondary" | "outline" | "ghost" | "info" | "success" | "warning" | "error""default"
size"sm" | "md" | "lg" | "icon""md"

The component also accepts all standard HTML attributes for both <button> and <a> elements.

Changelog

v2.0.0

  • tailwind-variants now implemented. This uses tailwind-merge under the hood to merge Tailwind classes without style conflicts.
  • Removed radius prop now that classes like “rounded-full” can be passed to the components to override, taking advantage of tailwind-variants