From c24e37ba2bdcebf7e9a3b178b46ee60418fb3e07 Mon Sep 17 00:00:00 2001 From: Bartosz Kaszubowski Date: Fri, 12 Sep 2025 10:28:34 +0200 Subject: [PATCH] fix hardcoded Bluesky icon fill color --- .../src/theme/Icon/Socials/Bluesky/index.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 website/src/theme/Icon/Socials/Bluesky/index.tsx diff --git a/website/src/theme/Icon/Socials/Bluesky/index.tsx b/website/src/theme/Icon/Socials/Bluesky/index.tsx new file mode 100644 index 00000000000..21957e87c41 --- /dev/null +++ b/website/src/theme/Icon/Socials/Bluesky/index.tsx @@ -0,0 +1,17 @@ +import type {SVGProps, ReactNode} from 'react'; + +// SVG Source: https://svgl.app/ +function Bluesky(props: SVGProps): ReactNode { + return ( + + + + ); +} +export default Bluesky;