lbry-desktop/ui/component/userSignOutButton/view.jsx

18 lines
375 B
React
Raw Normal View History

2019-09-26 18:07:11 +02:00
// @flow
import React from 'react';
import Button from 'component/button';
type Props = {
button: string,
label?: string,
signOut: () => void,
};
function UserSignOutButton(props: Props) {
const { button = 'link', signOut, label } = props;
return <Button button={button} label={label || __('Sign Out')} onClick={signOut} />;
}
export default UserSignOutButton;