lbry-desktop/ui/js/component/iconFeatured/view.jsx

16 lines
366 B
React
Raw Normal View History

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