2017-07-30 00:56:08 +02:00
|
|
|
import React from "react";
|
|
|
|
import { Icon } from "component/common.js";
|
|
|
|
|
|
|
|
const IconFeatured = props => {
|
|
|
|
return (
|
|
|
|
<span className="icon-featured" title={ __("Watch content with this icon to earn weekly rewards.")}>
|
2017-08-02 19:43:58 +02:00
|
|
|
<Icon icon="icon-rocket"
|
2017-07-30 00:56:08 +02:00
|
|
|
fixed
|
|
|
|
className="card__icon-featured-content" />
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default IconFeatured;
|