67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
/**
|
|
* 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 `<button>` or `<a>` depending
|
|
* on the props.
|
|
*/
|
|
const Button = ( {
|
|
className,
|
|
showSpinner = false,
|
|
children,
|
|
variant = 'contained',
|
|
...props
|
|
}: ButtonProps ): JSX.Element => {
|
|
const buttonClassName = classNames(
|
|
'wc-block-components-button',
|
|
'wp-element-button',
|
|
className,
|
|
variant,
|
|
{
|
|
'wc-block-components-button--loading': showSpinner,
|
|
}
|
|
);
|
|
|
|
return (
|
|
<WPButton className={ buttonClassName } { ...props }>
|
|
{ showSpinner && <Spinner /> }
|
|
<span className="wc-block-components-button__text">
|
|
{ children }
|
|
</span>
|
|
</WPButton>
|
|
);
|
|
};
|
|
|
|
export default Button;
|