lbry-desktop/ui/component/userSignOutButton/view.jsx
2019-11-11 13:27:29 -05:00

18 lines
375 B
JavaScript

// @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;