lbry-desktop/ui/js/component/iconFeatured/view.jsx
2017-08-08 10:36:14 +01:00

16 lines
366 B
JavaScript

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.")}
>
<Icon icon="icon-rocket" fixed className="card__icon-featured-content" />
</span>
);
};
export default IconFeatured;