/** * External dependencies */ import { useBlockProps } from '@wordpress/block-editor'; import EditableButton from '@woocommerce/editor-components/editable-button'; import classNames from 'classnames'; /** * Internal dependencies */ import { defaultCheckoutButtonLabel } from './constants'; import { getVariant } from '../utils'; export const Edit = ( { attributes, setAttributes, }: { attributes: { checkoutButtonLabel: string; }; setAttributes: ( attributes: Record< string, unknown > ) => void; } ): JSX.Element => { const blockProps = useBlockProps(); const { checkoutButtonLabel } = attributes; return ( { setAttributes( { checkoutButtonLabel: content, } ); } } /> ); }; export const Save = (): JSX.Element => { return
; };