feat: Delete Stripe payment method

This commit is contained in:
Ahmed Bouhuolia
2024-09-22 14:30:47 +02:00
parent c0a4c965f0
commit 3129c76c30
12 changed files with 262 additions and 14 deletions

View File

@@ -0,0 +1,26 @@
import React from 'react';
interface MoreIconProps extends React.SVGProps<SVGSVGElement> {
size?: number;
}
export const MoreIcon: React.FC<MoreIconProps> = ({ size = 16, ...props }) => (
<svg
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox={`0 0 ${size} ${size}`}
enableBackground={`new 0 0 ${size} ${size}`}
xmlSpace="preserve"
{...props}
>
<g id="more_3_">
<circle cx={size / 8} cy={size / 2.00625} r={size / 8} />
<circle cx={size - size / 8} cy={size / 2.00625} r={size / 8} />
<circle cx={size / 2} cy={size / 2.00625} r={size / 8} />
</g>
</svg>
);