Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Bluesky to Profile Social Links #4052

Merged
Prev Previous commit
Next Next commit
Delete bluesky color icon
elizabetdev committed Jan 8, 2025
commit 06286396aa7755e0a145347eae6b05326206c582
12 changes: 0 additions & 12 deletions packages/shared/src/components/icons/Bluesky/color.svg

This file was deleted.

3 changes: 1 addition & 2 deletions packages/shared/src/components/icons/Bluesky/index.tsx
Original file line number Diff line number Diff line change
@@ -3,8 +3,7 @@ import React from 'react';
import type { IconProps } from '../../Icon';
import Icon from '../../Icon';
import MonoIcon from './mono.svg';
import ColorIcon from './color.svg';

export const BlueskyIcon = (props: IconProps): ReactElement => (
<Icon {...props} IconPrimary={MonoIcon} IconSecondary={ColorIcon} />
<Icon {...props} IconPrimary={MonoIcon} IconSecondary={MonoIcon} />
);