From f7abbcd0beee7fc28b77004b6fd9a60319e864e3 Mon Sep 17 00:00:00 2001 From: Mukesh Date: Mon, 8 Sep 2025 18:24:30 +0200 Subject: [PATCH] feat: added checkout logo --- src/icons/brands/CheckoutIcon.tsx | 42 +++++++++++++++++++++++++++++++ src/icons/brands/index.ts | 1 + 2 files changed, 43 insertions(+) create mode 100644 src/icons/brands/CheckoutIcon.tsx diff --git a/src/icons/brands/CheckoutIcon.tsx b/src/icons/brands/CheckoutIcon.tsx new file mode 100644 index 000000000..b619170e5 --- /dev/null +++ b/src/icons/brands/CheckoutIcon.tsx @@ -0,0 +1,42 @@ +// DO NOT EDIT. This file was generated by running `npm run generate`.; +import * as React from 'react'; +import { get } from '../../utils/themeGet'; +import { IconProps } from '../IconProps'; +type Props = Omit; +const CheckoutIcon: React.FC = ({ size = 'medium', ...props }) => { + const sizePx = Number.isFinite(size as number) + ? size + : get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props); + return ( + + + + + + + + ); +}; +export default CheckoutIcon; diff --git a/src/icons/brands/index.ts b/src/icons/brands/index.ts index a66468dc8..1ca4699b9 100644 --- a/src/icons/brands/index.ts +++ b/src/icons/brands/index.ts @@ -19,3 +19,4 @@ export { default as StripeIcon } from './StripeIcon'; export { default as VisaIcon } from './VisaIcon'; export { default as WirecardIcon } from './WirecardIcon'; export { default as PayPalIcon } from './PayPalIcon'; +export { default as CheckoutIcon } from './CheckoutIcon';