import type { SVGProps } from "react"; export interface PaypalNeutralProps extends SVGProps { /** * Icon size (width and height) * @default 16 */ size?: number | string; } /** * PaypalNeutral icon from social-media category * * @example * * */ export const PaypalNeutral = ({ size = 16, ...props }: PaypalNeutralProps) => ( );