Primary action trigger - four variants, two extra sizes, and a disabled state.
| Prop | Type | Default | Description |
|---|---|---|---|
| variant | "primary" | "secondary" | "ghost" | "link" | "primary" | Visual style. |
| size | "sm" | "md" | "lg" | "md" | |
| iconLeft | React.ReactNode | - | Optional leading icon node (Lucide). |
| tone | Tone | "accent" | Brand colour. |
| as | React.ElementType | "button" | Render as a different element/component (e.g. |
| href | string | - | Passed through when `as` renders a link (anchor / SmartLink / next-Link). |
import { Button } from "@vulcansoft/ui"; <Button>Start a project</Button><Button variant="secondary">View work</Button><Button variant="ghost">See the work</Button><Button size="lg">Large</Button><Button disabled>Disabled</Button>