# Outline Secondary Button

The canonical outlined action button for useful secondary actions without competing with the primary action.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/outline-secondary-button.json
```

[Registry JSON](https://amro-ui.vercel.app/r/outline-secondary-button.json)

## Preview

```tsx
import { OutlineSecondaryButton } from "@amro-ui/react";

export function Preview() {
  return (
    <div className="grid min-h-72 w-full place-items-center rounded-xl border bg-background p-6 sm:p-10">
      <OutlineSecondaryButton />
    </div>
  );
}
```


## Source

### ui/outline-secondary-button.tsx

```tsx
"use client";

import "@/components/amro/amro-ui.css";

export { OutlineSecondaryButton } from "@/components/amro/components/shared";
export type { OutlineSecondaryButtonProps } from "@/components/amro/components/shared";
```



## Usage

The canonical outlined action button for useful secondary actions without competing with the primary action.

### Package

```tsx
import { OutlineSecondaryButton } from "@amro-ui/react";

<OutlineSecondaryButton />
```

### shadcn copy

```tsx
import { OutlineSecondaryButton } from "@/components/ui/outline-secondary-button";

<OutlineSecondaryButton />
```

