From 309b792d68566e452087bc4cb8b48d6565467a94 Mon Sep 17 00:00:00 2001 From: Linna <38363056+linnall@users.noreply.github.com> Date: Thu, 12 Dec 2024 13:20:00 -0500 Subject: [PATCH] fix: updates facebook icon used in ui component (#1196) --- .../configuration/Authentication.tsx | 4 +- .../ui-demo/src/components/icons/facebook.tsx | 63 ++++++++----------- 2 files changed, 27 insertions(+), 40 deletions(-) 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 ( + + + + + + + ); +};