mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
11 lines
277 B
JavaScript
11 lines
277 B
JavaScript
import classNames from 'classnames';
|
|
|
|
const CardActions = ( { isDimmed = false, children } ) => {
|
|
const className = classNames( 'ppcp--card-actions', {
|
|
'ppcp--dimmed': isDimmed,
|
|
} );
|
|
|
|
return <div className={ className }>{ children }</div>;
|
|
};
|
|
|
|
export default CardActions;
|