feat: initial commit with seeded database and premium ui changes
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import type React from "react";
|
||||
|
||||
export function AuthDivider({
|
||||
children,
|
||||
...props
|
||||
}: React.ComponentProps<"div">) {
|
||||
return (
|
||||
<div className="relative flex w-full items-center" {...props}>
|
||||
<div className="w-full border-t" />
|
||||
<div className="flex w-max justify-center text-nowrap px-2 text-muted-foreground text-xs">
|
||||
{children}
|
||||
</div>
|
||||
<div className="w-full border-t" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user