mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-23 20:00:15 +01:00
feat: facebook login (#820)
* Facebook strategy * Update user_auth_system.md * Update user_auth_system.md
This commit is contained in:
parent
a569020312
commit
007d51ede1
23 changed files with 155 additions and 27 deletions
28
client/src/components/svg/FacebookIcon.tsx
Normal file
28
client/src/components/svg/FacebookIcon.tsx
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
import React from 'react';
|
||||
|
||||
export default function FacebookIcon() {
|
||||
return (
|
||||
<svg viewBox="0 0 40 40" width="25" height="25">
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={-277.375}
|
||||
x2={-277.375}
|
||||
y1={406.602}
|
||||
y2={407.573}
|
||||
gradientTransform="matrix(40 0 0 -39.7778 11115.001 16212.334)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop offset={0} stopColor="#0062e0" />
|
||||
<stop offset={1} stopColor="#19afff" />
|
||||
</linearGradient>
|
||||
<path
|
||||
fill="url(#a)"
|
||||
d="M16.7 39.8C7.2 38.1 0 29.9 0 20 0 9 9 0 20 0s20 9 20 20c0 9.9-7.2 18.1-16.7 19.8l-1.1-.9h-4.4l-1.1.9z"
|
||||
/>
|
||||
<path
|
||||
fill="#fff"
|
||||
d="m27.8 25.6.9-5.6h-5.3v-3.9c0-1.6.6-2.8 3-2.8H29V8.2c-1.4-.2-3-.4-4.4-.4-4.6 0-7.8 2.8-7.8 7.8V20h-5v5.6h5v14.1c1.1.2 2.2.3 3.3.3 1.1 0 2.2-.1 3.3-.3V25.6h4.4z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
|
@ -13,6 +13,7 @@ export { default as StopGeneratingIcon } from './StopGeneratingIcon';
|
|||
export { default as RegenerateIcon } from './RegenerateIcon';
|
||||
export { default as ContinueIcon } from './ContinueIcon';
|
||||
export { default as GoogleIcon } from './GoogleIcon';
|
||||
export { default as FacebookIcon } from './FacebookIcon';
|
||||
export { default as OpenIDIcon } from './OpenIDIcon';
|
||||
export { default as GithubIcon } from './GithubIcon';
|
||||
export { default as DiscordIcon } from './DiscordIcon';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue