mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
14 lines
381 B
JavaScript
14 lines
381 B
JavaScript
// @flow
|
|
import * as ICONS from 'constants/icons';
|
|
import React from 'react';
|
|
import Button from 'component/button';
|
|
|
|
type Props = {
|
|
href?: string,
|
|
navigate?: string,
|
|
};
|
|
|
|
export default function HelpLink(props: Props) {
|
|
const { href, navigate } = props;
|
|
return <Button className="icon--help" icon={ICONS.HELP} description={__('Help')} href={href} navigate={navigate} />;
|
|
}
|