Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Button } from '@automattic/components';
import clsx from 'clsx';
import { translate } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { contextTypes } from '../context-types';
export default class LinkQuit extends Component {
static displayName = 'LinkQuit';
static propTypes = {
primary: PropTypes.bool,
subtle: PropTypes.bool,
href: PropTypes.string,
target: PropTypes.string,
};
static contextTypes = contextTypes;
constructor( props, context ) {
super( props, context );
}
onClick = ( event ) => {
this.props.onClick && this.props.onClick( event );
const { quit, tour, tourVersion, step, isLastStep } = this.context;
quit( { tour, tourVersion, step, isLastStep } );
};
render() {
const { children, primary, subtle, href, target } = this.props;
const classes = clsx( 'guided-tours__button-link', {
'guided-tours__subtle-button': subtle,
} );
return (
<Button
className={ classes }
onClick={ this.onClick }
primary={ primary }
href={ href }
target={ target }
>
{ children || translate( 'Quit' ) }
</Button>
);
}
}