diff options
| author | Frank <[email protected]> | 2025-09-15 14:48:00 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-09-15 14:48:02 -0400 |
| commit | 5e6dd312eb9e4883b43fe9e61f9df7677e880812 (patch) | |
| tree | 429d5eae2a4aca9af94b2e44ded090794e9dd693 /cloud/app/src/component | |
| parent | 7218a662ab08e5526d469090a565342872f04a48 (diff) | |
| download | opencode-5e6dd312eb9e4883b43fe9e61f9df7677e880812.tar.gz opencode-5e6dd312eb9e4883b43fe9e61f9df7677e880812.zip | |
wip: zen
Diffstat (limited to 'cloud/app/src/component')
| -rw-r--r-- | cloud/app/src/component/icon.tsx | 11 |
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> + ) +} |
