File "dashboard-button.js"

Full Path: /home/warrior1/public_html/plugins/elementor/app/assets/js/molecules/dashboard-button.js
File size: 737 bytes
MIME-type: text/x-java
Charset: utf-8

import Button from 'elementor-app/ui/molecules/button';

import useAction from 'elementor-app/hooks/use-action';

import { arrayToClassName } from 'elementor-app/utils/utils.js';

export default function DashboardButton( props ) {
	const action = useAction(),
		baseClassName = 'e-app-dashboard-button',
		classes = [ baseClassName, props.className ];

	return (
		<Button
			{ ...props }
			className={ arrayToClassName( classes ) }
			text={ props.text }
			onClick={ action.backToDashboard }
		/>
	);
}

DashboardButton.propTypes = {
	className: PropTypes.string,
	text: PropTypes.string,
};

DashboardButton.defaultProps = {
	className: '',
	variant: 'contained',
	color: 'primary',
	text: __( 'Back to dashboard', 'elementor' ),
};