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