This commit is contained in:
Dhravya Shah 2026-03-05 14:01:46 -08:00
parent 80a75f73ba
commit abe52f25f1
3 changed files with 6925 additions and 3 deletions

2
.gitignore vendored
View file

@ -5,7 +5,6 @@ drizzle.config.ts
# Dependencies
node_modules
bun.lock
.pnp
.pnp.js
@ -44,4 +43,3 @@ yarn-error.log*
.venv
.arch
__pycache__

6923
bun.lock Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,8 @@
import { cn } from "@lib/utils";
import { Button } from "@ui/components/button";
export interface ExternalAuthButtonProps extends React.ComponentProps<"button"> {
export interface ExternalAuthButtonProps
extends React.ComponentProps<typeof Button> {
authProvider: string;
authIcon: React.ReactNode;
}