---
title: ''
subtitle: Neon Auth OAuth button group component
enableTableOfContents: true
tag: beta
---
Renders all the ``s enabled for your Neon Auth project.
If there are no OAuth providers enabled, this component will be empty.
## Props
- `type`: `'sign-in' | 'sign-up'` — Specifies whether the buttons text are for sign-in or sign-up (both are the same in terms of functionality).
## Example
```tsx
import { OAuthButtonGroup } from '@stackframe/stack';
export default function Page() {
return (
Sign In
);
}
```