Saaj UI

Button

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

Preview

Installation

npx saaj add Button

Usage

MyButton.tsx
import { Button, ButtonText } from '@/components/ui/Button';
 
export function MyButton() {
  return (
    <Button>
      <ButtonText>Get Started</ButtonText>
    </Button>
  );
}

On this page