Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Remove generic payment method icons (Stripe CC + Cheque) #2968

Merged
merged 3 commits into from
Aug 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Content = () => {
*/
const Label = ( props ) => {
const { PaymentMethodLabel } = props.components;
return <PaymentMethodLabel icon="checkPayment" text={ label } />;
return <PaymentMethodLabel text={ label } />;
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ const StripeLabel = ( props ) => {

return (
<PaymentMethodLabel
icon="card"
text={ __( 'Credit / Debit Card', 'woo-gutenberg-products-block' ) }
/>
);
Expand Down