Saaj UI

Button

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

Installation

npx saaj add button

Usage

import { Button } from '@/components/ui/button';
 
export function ButtonDemo() {
  return (
    <Button>
      <Button.Text>Continue</Button.Text>
    </Button>
  );
}

On this page