react-svg-credit-card-payment-icons
Version:
React components library with 6 styles, 108 icons, TypeScript support, and a variety of types and formats for easy integration into React applications.
49 lines (46 loc) • 1.34 kB
TypeScript
import * as React from 'react';
import { SVGProps } from 'react';
/**
* PayPal payment icon component for flat-rounded style.
*
* This is an auto-generated SVG React component for the PayPal payment method.
* It accepts all standard SVG element props and can be styled or sized as needed.
*
* @param props - Standard SVG element props (className, style, width, height, etc.)
* @returns A React component rendering the PayPal flat-rounded icon
*
* @example
* ```tsx
* import { PayPal } from 'react-svg-credit-card-payment-icons/icons/flat-rounded';
*
* // Basic usage
* <PayPal />
*
* // With custom size
* <PayPal width={100} height={64} />
*
* // With custom styling
* <PayPal className="my-icon" style={{ opacity: 0.8 }} />
* ```
*
* @see {@link https://github.com/marcovoliveira/react-svg-credit-card-payment-icons | GitHub Repository}
*/
declare const PayPal: {
(props: SVGProps<SVGSVGElement>): React.JSX.Element;
cardMetadata: {
type: string;
displayName: string;
iconAuthor: string;
iconLicense: string;
aliases: never[];
testNumbers: never[];
patterns: {
full: RegExp[];
prefix: null;
};
lengthRange: null;
formatPattern: null;
issuingCountries: string[];
};
};
export { PayPal as P };