- Sources
+ Payment Method
{community.billingSettings.sources.map(
source =>
- source && (
-
- {source.sourceId} · {source.card.last4} ·{' '}
- {source.card.brand} · Exp {source.card.exp_month}/{
- source.card.exp_year
- }
-
- )
+ source &&
)}
diff --git a/src/views/communityBilling/style.js b/src/views/communityBilling/style.js
index a3f69bd80f..f88d0ae936 100644
--- a/src/views/communityBilling/style.js
+++ b/src/views/communityBilling/style.js
@@ -10,3 +10,27 @@ export const EmailForm = styled.form`
margin-left: 16px;
}
`;
+
+export const SourceContainer = styled.div`
+ display: flex;
+ align-items: center;
+`;
+export const SourceText = styled.p`
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: flex-start;
+ margin-left: 12px;
+`;
+export const SourceName = styled.p`
+ line-height: 1.3;
+ font-size: 15px;
+ font-weight: 500;
+ color: ${props => props.theme.text.default};
+`;
+export const SourceExpiration = styled.p`
+ line-height: 1.3;
+ font-size: 14px;
+ font-weight: 400;
+ color: ${props => props.theme.text.alt};
+`;