Create BalanceIcon.tsx

This commit is contained in:
georgetrinickls 2025-05-13 11:49:14 +01:00 committed by GitHub
parent 68e151b2bd
commit 8dd98fa967
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,29 @@
import React from "react";
const BalanceIcon: React.FC = () => (
<svg
width="111"
height="32"
viewBox="0 0 111 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className="h-8 w-auto"
>
<rect x="0.5" y="0.5" width="110" height="31" rx="15.5" fill="white" />
<rect x="0.5" y="0.5" width="110" height="31" rx="15.5" stroke="#E4E4E4" />
<text
x="40"
y="21"
fill="#000"
fontSize="14"
fontWeight="bold"
fontFamily="sans-serif"
>
£125.99
</text>
<circle cx="93" cy="16" r="10" fill="#ccc" />
<circle cx="93" cy="13" r="3" fill="#999" />
</svg>
);
export default BalanceIcon;