/** * External dependencies */ import { CART_URL } from '@woocommerce/block-settings'; import Button from '@woocommerce/base-components/button'; import classNames from 'classnames'; import { useColorProps } from '@woocommerce/base-hooks'; /** * Internal dependencies */ import { defaultCartButtonLabel } from './constants'; import { getVariant } from '../utils'; type MiniCartCartButtonBlockProps = { cartButtonLabel?: string; className?: string; style?: string; }; const Block = ( { className, cartButtonLabel, style, }: MiniCartCartButtonBlockProps ): JSX.Element | null => { const colorProps = useColorProps( { style } ); if ( ! CART_URL ) { return null; } return ( ); }; export default Block;