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;