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 # Dependencies
node_modules node_modules
bun.lock
.pnp .pnp
.pnp.js .pnp.js
@ -44,4 +43,3 @@ yarn-error.log*
.venv .venv
.arch .arch
__pycache__ __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 { cn } from "@lib/utils";
import { Button } from "@ui/components/button"; import { Button } from "@ui/components/button";
export interface ExternalAuthButtonProps extends React.ComponentProps<"button"> { export interface ExternalAuthButtonProps
extends React.ComponentProps<typeof Button> {
authProvider: string; authProvider: string;
authIcon: React.ReactNode; authIcon: React.ReactNode;
} }