mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-27 15:31:27 +00:00
14 lines
374 B
JavaScript
14 lines
374 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;
|