Button

Displays a button or a component that looks like a button.

inputs
action
interactive

Preview

Variants

Code

TSX
1
2
3
4
5
import { Button } from "@/components/ui/button"

export function ButtonDemo() {
  return <Button>Click me</Button>
}