File "dialog-button.js"

Full Path: /home/warrior1/public_html/wp-content/plugins/elementor/app/assets/js/ui/dialog/dialog-button.js
File size: 410 bytes
MIME-type: text/x-java
Charset: utf-8

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

export default function DialogButton( props ) {
	return (
		<Button
			{ ...props }
			className={ `eps-dialog__button ${ props.className }` }
		/>
	);
}

DialogButton.propTypes = {
	...Button.propTypes,
	tabIndex: PropTypes.string,
	type: PropTypes.string,
};

DialogButton.defaultProps = {
	...Button.defaultProps,
	tabIndex: '0',
	type: 'button',
};