52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { Button as WPButton } from 'wordpress-components';
|
|
import type { ReactNode } from 'react';
|
|
import classNames from 'classnames';
|
|
import Spinner from '@woocommerce/base-components/spinner';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import './style.scss';
|
|
|
|
interface ButtonProps extends WPButton.ButtonProps {
|
|
className?: string;
|
|
showSpinner?: boolean;
|
|
children?: ReactNode;
|
|
disabled?: boolean;
|
|
onClick?: ( e: React.MouseEvent< HTMLButtonElement, MouseEvent > ) => void;
|
|
type?: 'input' | 'submit';
|
|
}
|
|
|
|
/**
|
|
* Component that visually renders a button but semantically might be `<button>` or `<a>` depending
|
|
* on the props.
|
|
*/
|
|
const Button = ( {
|
|
className,
|
|
showSpinner = false,
|
|
children,
|
|
...props
|
|
}: ButtonProps ): JSX.Element => {
|
|
const buttonClassName = classNames(
|
|
'wc-block-components-button',
|
|
className,
|
|
{
|
|
'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;
|