/** * External dependencies */ import { Button as WPButton } from 'wordpress-components'; import type { Button as WPButtonType } from '@wordpress/components'; import classNames from 'classnames'; import Spinner from '@woocommerce/base-components/spinner'; /** * Internal dependencies */ import './style.scss'; export interface ButtonProps extends Omit< WPButtonType.ButtonProps, 'variant' > { /** * Show spinner * * @default false */ showSpinner?: boolean | undefined; /** * Button variant */ variant?: 'text' | 'contained' | 'outlined'; } export interface AnchorProps extends Omit< ButtonProps, 'href' > { /** * Button href */ href?: string | undefined; } /** * Component that visually renders a button but semantically might be `