woocommerce/plugins/woocommerce-blocks/packages/checkout/button/index.tsx

52 lines
1.0 KiB
TypeScript
Raw Normal View History

/**
* External dependencies
*/
import { Button as WPButton } from 'wordpress-components';
import type { ReactNode } from 'react';
import classNames from 'classnames';
/**
* Internal dependencies
*/
import './style.scss';
interface ButtonProps extends WPButton.ButtonProps {
className?: string;
showSpinner?: boolean;
children?: ReactNode;
}
/**
* 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 && (
<span
className="wc-block-components-button__spinner"
aria-hidden="true"
/>
) }
<span className="wc-block-components-button__text">
{ children }
</span>
</WPButton>
);
};
export default Button;