mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
feat: Delete Stripe payment method
This commit is contained in:
26
packages/webapp/src/icons/More.tsx
Normal file
26
packages/webapp/src/icons/More.tsx
Normal 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>
|
||||
);
|
||||
Reference in New Issue
Block a user