diff --git a/src/icons/brands/CheckoutIcon.tsx b/src/icons/brands/CheckoutIcon.tsx new file mode 100644 index 00000000..b619170e --- /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 a66468dc..1ca4699b 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';