PayPal SDK Logos

Logos for PayPal SDKs.
Render using JSX with HTML
import { PayPalLogo, LOGO_COLOR } from "paypal-sdk-logos";
import { node, html } from "@krakenjs/jsx-pragmatic/src";
function render() {
return (<PayPalLogo logoColor={LOGO_COLOR.WHITE} />).render(html());
}
Render using JSX with React
import React from "react";
import { PayPalLogo, LOGO_COLOR } from "paypal-sdk-logos";
import { node, react } from "@krakenjs/jsx-pragmatic/src";
function render() {
return (<PayPalLogo logoColor={LOGO_COLOR.WHITE} />).render(react({ React }));
}
Render using vanilla JavaScript and HTML
import { PayPalLogo, LOGO_COLOR } from 'paypal-sdk-logos';
import { html } from '@krakenjs/jsx-pragmatic/src';
function render() {
return PayPalLogo({ logoColor: LOGO_COLOR.WHITE });
.render(html());
}
Quick Start
Getting Started
- Fork the module
- Run setup:
npm run setup
- Start editing code in
./src
and writing tests in ./tests
npm run build
Building
npm run build
Tests
Publishing & Deploying to CDN
For detailed instructions on publishing the package and deploying the logos to the CDN, refer to the Contributing Guide.