mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 13:01:56 +00:00
12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
import { Separator } from "@/components/shadcn";
|
|
|
|
export const AuthDivider = () => {
|
|
return (
|
|
<div className="flex items-center gap-3">
|
|
<Separator className="flex-1" />
|
|
<p className="text-text-neutral-tertiary shrink-0 text-xs">or</p>
|
|
<Separator className="flex-1" />
|
|
</div>
|
|
);
|
|
};
|