diff options
| author | Frank <[email protected]> | 2026-03-19 18:44:21 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2026-03-19 18:44:24 -0400 |
| commit | bd44489ada70cf908b69466f623ca74e800b3fc7 (patch) | |
| tree | 0819979511404c9aba7d1274da7aa83128a65139 /packages/console/app/src/component | |
| parent | a6ef9e92065937dfeb9920abfd6e88bf95b1e572 (diff) | |
| download | opencode-bd44489ada70cf908b69466f623ca74e800b3fc7.tar.gz opencode-bd44489ada70cf908b69466f623ca74e800b3fc7.zip | |
go: upi payment
Diffstat (limited to 'packages/console/app/src/component')
| -rw-r--r-- | packages/console/app/src/component/icon.tsx | 13 | ||||
| -rw-r--r-- | packages/console/app/src/component/modal.css | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/packages/console/app/src/component/icon.tsx b/packages/console/app/src/component/icon.tsx index df7e067c2..0aaa302b3 100644 --- a/packages/console/app/src/component/icon.tsx +++ b/packages/console/app/src/component/icon.tsx @@ -76,6 +76,19 @@ export function IconAlipay(props: JSX.SvgSVGAttributes<SVGSVGElement>) { ) } +export function IconUpi(props: JSX.SvgSVGAttributes<SVGSVGElement>) { + return ( + <svg {...props} viewBox="10 16 100 28" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> + <path d="M95.678 42.9 110 29.835l-6.784-13.516Z" /> + <path d="M90.854 42.9 105.176 29.835l-6.784-13.516Z" /> + <path + d="M22.41 16.47 16.38 37.945l21.407.15 5.88-21.625h5.427l-7.05 25.14c-.27.96-1.298 1.74-2.295 1.74H12.31c-1.664 0-2.65-1.3-2.2-2.9l6.724-23.98Zm66.182-.15h5.427l-7.538 27.03h-5.58ZM49.698 27.582l27.136-.15 1.81-5.707H51.054l1.658-5.256 29.4-.27c1.83-.017 2.92 1.4 2.438 3.167L81.78 29.49c-.483 1.766-2.36 3.197-4.19 3.197H53.316L50.454 43.8h-5.28Z" + fill-rule="evenodd" + /> + </svg> + ) +} + export function IconWechat(props: JSX.SvgSVGAttributes<SVGSVGElement>) { return ( <svg {...props} viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> diff --git a/packages/console/app/src/component/modal.css b/packages/console/app/src/component/modal.css index 1f47f395d..e71fd1a19 100644 --- a/packages/console/app/src/component/modal.css +++ b/packages/console/app/src/component/modal.css @@ -62,5 +62,6 @@ font-size: var(--font-size-lg); font-weight: 600; color: var(--color-text); + text-align: center; } } |
