import * as React from "react"; export interface SignInWithGitlabProps { children?: React.ReactNode; } export function SignInWithGitlab(props: SignInWithGitlabProps) { return (
Sign in with Gitlab
); } SignInWithGitlab.displayName = "SignInWithGitlab";