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

[Add] Reddit social icon #3146

Merged
merged 8 commits into from
Aug 10, 2021
Merged
4 changes: 3 additions & 1 deletion src/SocialIcon/SocialIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const colors = {
wordpress: '#21759b',
youtube: '#bb0000',
microsoft: '#46A4F2',
reddit: '#ed452f',
};

export type SocialMediaType =
Expand Down Expand Up @@ -80,7 +81,8 @@ export type SocialMediaType =
| 'codepen'
| 'weibo'
| 'vk'
| 'microsoft';
| 'microsoft'
| 'reddit';

export type SocialIconProps = {
/** Type of button. */
Expand Down