SumOfUs/Champaign

View on GitHub
app/javascript/components/ExpressDonation/PaymentMethodWrapper.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

export default function PaymentMethodWrapper(props) {
  return (
    <div className="PaymentMethodWrapper">
      <i className="PaymentMethodWrapper__icon fa fa-credit-card" />
      {props.children}
    </div>
  );
}