File "AddQueryParameterButton.jsx"

Full Path: /home/rattkxnv/byattorney.com/wp-content/plugins/generateblocks/src/blocks/query/components/AddQueryParameterButton.jsx
File size: 309 bytes
MIME-type: text/x-java
Charset: utf-8

import { Button } from '@wordpress/components';
import { __ } from '@wordpress/i18n';

export function AddQueryParameterButton( props ) {
	return (
		<div style={ { marginBottom: '1.33em' } }>
			<Button
				isPrimary
				text={ __( 'Add Parameter', 'generateblocks' ) }
				{ ...props }
			/>
		</div>
	);
}