Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

New payment method support

Add new payment method icon

ref: https://github.com/rbilabs/ctg-components-library/pull/399

Expand
titlesrc/svgs/mbway/index.tsx
Code Block
import { SVGIconComponent } from '../types';

export const endered: SVGIconComponent = ({ title = '', ...props }) => (
//svg code
);
Expand
titlesrc/svgs/index.ts
Code Block
export * from './mbway';
Expand
titlesrc/themes/common/icon.ts
Code Block
mbway: 'mbway',
Expand
titlesrc/themes/types/icon.ts
Code Block
mbway: string;

Create a new feature flag

...