diff --git a/examples/ui-demo/src/components/configuration/Authentication.tsx b/examples/ui-demo/src/components/configuration/Authentication.tsx index 545427bc6f..c3b9bab4b1 100644 --- a/examples/ui-demo/src/components/configuration/Authentication.tsx +++ b/examples/ui-demo/src/components/configuration/Authentication.tsx @@ -3,7 +3,7 @@ import { Metrics } from "@/metrics"; import { useConfigStore } from "@/state"; import { BiometricIcon } from "../icons/biometric"; import { ExternalLinkIcon } from "../icons/external-link"; -import { FacebookLogo } from "../icons/facebook"; +import { FacebookIcon } from "../icons/facebook"; import { GoogleIcon } from "../icons/google"; import { LockIcon } from "../icons/lock"; import { MailIcon } from "../icons/mail"; @@ -122,7 +122,7 @@ export const Authentication = ({ className }: { className?: string }) => { /> } + icon={} onClick={setAddFacebookAuth} /> & { size?: number }) => ( - - - - - - - - - - - - - - - -); +export const FacebookIcon = ( + props: JSX.IntrinsicAttributes & SVGProps +) => { + return ( + + + + + + + ); +};