Merge pull request #1260 from ykris45/patch-6

modify featured content badge to red colour
This commit is contained in:
Sean Yesmunt 2018-04-02 22:07:52 -04:00 committed by GitHub
commit 401d980795
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ class IconComponent extends React.PureComponent<Props> {
const Icon = FeatherIcons[icon];
let color;
if (icon === icons.HEART) {
if (icon === icons.HEART || icon === icons.FEATURED) {
color = RED_COLOR;
}