summaryrefslogtreecommitdiffhomepage
path: root/cloud/app/src/component
diff options
context:
space:
mode:
Diffstat (limited to 'cloud/app/src/component')
-rw-r--r--cloud/app/src/component/icon.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/cloud/app/src/component/icon.tsx b/cloud/app/src/component/icon.tsx
index c91c4937d..a82572e62 100644
--- a/cloud/app/src/component/icon.tsx
+++ b/cloud/app/src/component/icon.tsx
@@ -69,3 +69,14 @@ export function IconCheck(props: JSX.SvgSVGAttributes<SVGSVGElement>) {
</svg>
)
}
+
+export function IconCreditCard(props: JSX.SvgSVGAttributes<SVGSVGElement>) {
+ return (
+ <svg {...props} viewBox="0 0 24 24">
+ <path
+ fill="currentColor"
+ d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8h16v10z"
+ />
+ </svg>
+ )
+}