npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

credit-card-ui-react

v0.2.0

Published

A beautiful, animated credit card component for React

Readme

Credit Card UI React


Features

  • Real-time card brand detection (Visa, Mastercard, Amex, Discover, JCB, Diners, UnionPay, Maestro, Elo, Hipercard)
  • Card level styling (Classic, Gold, Platinum, Signature, Infinite, Black, Business, Corporate)
  • Animated 3D flip effect
  • MeshGradient and GrainGradient background effects
  • Full form validation with detailed error messages
  • Headless API for custom implementations
  • TypeScript support
  • Tailwind CSS compatible

Install

npm install credit-card-ui-react

Import Styles

import "credit-card-ui-react/styles.css";

No Tailwind CSS required — all styles are pre-compiled and included.


Usage

Basic Card Component

import { CreditCard } from "credit-card-ui-react";

<CreditCard
  cardNumber="4111 1111 1111 1111"
  cardholderName="JOHN DOE"
  expiryDate="12/28"
  cvv="123"
  brand="visa"
  level="gold"
/>

Complete Payment Form

import { useState } from "react";
import { CreditCardWithForm, type FormSubmitData } from "credit-card-ui-react";

function PaymentForm() {
  const [isSubmitting, setIsSubmitting] = useState(false);

  const handleSubmit = async (data: FormSubmitData) => {
    setIsSubmitting(true);

    await fetch("/api/payment", {
      method: "POST",
      body: JSON.stringify(data),
    });

    setIsSubmitting(false);
  };

  return (
    <CreditCardWithForm
      layout="vertical"
      onSubmit={handleSubmit}
      isSubmitting={isSubmitting}
      submitLabel="Pay Now"
      showBankName
    />
  );
}

Using the Hook (Headless)

import { useCreditCard, CreditCard } from "credit-card-ui-react";

function CustomForm() {
  const { state, validation, metadata, handlers, formattedCardNumber } = useCreditCard();

  return (
    <div>
      <CreditCard
        cardNumber={formattedCardNumber}
        cardholderName={state.cardholderName}
        expiryDate={state.expiryDate}
        cvv={state.cvv}
        brand={state.brand}
        level={metadata.level}
        isFlipped={state.isFlipped}
      />
      <input
        value={state.cardNumber}
        onChange={(e) => handlers.setCardNumber(e.target.value)}
        onFocus={() => handlers.setFocusedField("cardNumber")}
      />
    </div>
  );
}

Props

CreditCard

| Prop | Type | Default | Description | |------|------|---------|-------------| | cardNumber | string | required | Card number to display | | cardholderName | string | required | Cardholder name | | expiryDate | string | required | Expiry date (MM/YY) | | cvv | string | required | CVV/CVC code | | brand | CardBrand | required | Card brand | | level | CardLevel | "unknown" | Card level for visual effects | | isFlipped | boolean | false | Show back of card | | focusedField | CardField | null | Currently focused field | | bankName | string | - | Bank name to display | | size | CardSize | "lg" | Size preset (sm, md, lg, xl) | | width | number \| string | - | Custom card width | | animation | CardAnimationConfig | - | Animation settings | | gradient | CardGradientConfig | - | Gradient customization | | visibility | CardVisibilityConfig | - | Element visibility | | placeholders | CardPlaceholders | - | Placeholder text | | labels | CardLabels | - | Back card labels | | style | CardStyleConfig | - | Style overrides | | classNames | CardClassNames | - | CSS class overrides |

CreditCardWithForm

| Prop | Type | Default | Description | |------|------|---------|-------------| | layout | FormLayout | "vertical" | Layout (vertical, horizontal-left, horizontal-right) | | gap | number \| string | "2rem" | Gap between card and form | | onSubmit | function | - | Submit handler (data: FormSubmitData) => void \| Promise<void> | | onCardChange | function | - | Change handler | | onValidationError | function | - | Called on invalid submit (errors, data) => void | | isSubmitting | boolean | - | Loading state (auto-detected from async onSubmit if omitted) | | disabled | boolean | false | Disable all form inputs and submit button | | submitLabel | string | "Submit" | Button text | | showBankName | boolean | false | Show bank name field | | showAddress | boolean | false | Show address fields | | showSubmitButton | boolean | true | Show submit button | | customFields | CustomField[] | [] | Additional form fields | | initialValues | object | - | Initial form values | | cardGradient | CardGradientConfig | - | Card gradient config | | cardLabels | CardLabels | - | Card back labels | | formInputLabels | FormInputLabels | - | Form field labels | | formProps | FormStyleProps | - | Form styling props |


Types

type CardBrand = "visa" | "mastercard" | "amex" | "discover" | "diners" | "jcb" | "unionpay" | "maestro" | "mir" | "elo" | "hipercard" | "hiper" | "verve" | "unknown";

type CardLevel = "classic" | "gold" | "platinum" | "signature" | "infinite" | "black" | "business" | "corporate" | "unknown";

type CardSize = "sm" | "md" | "lg" | "xl";

Configuration Objects

CardGradientConfig

{
  type?: "mesh" | "grain";
  colors?: [string, string, string, string];
  colorBack?: string;
  speed?: number;
  softness?: number;
  intensity?: number;
  noise?: number;
  disabled?: boolean;
}

CardLabels (Back Text)

{
  bankDisclaimer?: string;
  customerService?: string;
  termsAndConditions?: string;
  authorizedSignature?: string;
  securityNotice?: string;
}

CardVisibilityConfig

{
  chip?: boolean;
  contactless?: boolean;
  brandLogo?: boolean;
  bankName?: boolean;
  magneticStripe?: boolean;
  signatureStrip?: boolean;
  legalText?: boolean;
}

Gradient Effects

The library supports two types of animated gradient backgrounds:

Mesh Gradient (Default)

Smooth, fluid gradient animation with color blending.

Grain Gradient

Textured gradient with noise effect for a premium look.

<CreditCard
  gradient={{
    type: "grain",
    colors: ["#7300ff", "#eba8ff", "#00bfff", "#2b00ff"],
    colorBack: "#000000",
    softness: 0.5,
    intensity: 0.5,
    noise: 0.25,
  }}
/>

With CreditCardWithForm:

<CreditCardWithForm
  onSubmit={handleSubmit}
  cardGradient={{
    type: "grain",
    colors: ["#7300ff", "#eba8ff", "#00bfff", "#2b00ff"],
    colorBack: "#000000",
    softness: 0.5,
    intensity: 0.5,
    noise: 0.25,
  }}
/>

Examples

Full Example with All Props

import { useState } from "react";
import { CreditCardWithForm, type FormSubmitData } from "credit-card-ui-react";

function CheckoutPage() {
  const [isSubmitting, setIsSubmitting] = useState(false);

  const handleSubmit = async (data: FormSubmitData) => {
    setIsSubmitting(true);
    console.log("Payment data:", data);
    // Process payment...
    setIsSubmitting(false);
  };

  const handleCardChange = (data: FormSubmitData) => {
    console.log("Card changed:", data.brand, data.metadata?.level);
  };

  return (
    <CreditCardWithForm
      // Layout
      layout="vertical"
      gap="2rem"
      className="max-w-4xl mx-auto"
      cardClassName="mb-4"
      formClassName="px-4"

      // Form behavior
      onSubmit={handleSubmit}
      onCardChange={handleCardChange}
      isSubmitting={isSubmitting}
      submitLabel="Pay $99.00"
      showSubmitButton={true}

      // Form fields
      showBankName={true}
      showAddress={true}
      initialValues={{
        bankName: "BBVA",
        cardholderName: "JOHN DOE",
      }}

      // Custom fields
      customFields={[
        {
          id: "email",
          label: "Email",
          type: "email",
          placeholder: "[email protected]",
          required: true,
        },
        {
          id: "phone",
          label: "Phone",
          type: "tel",
          placeholder: "+1 (555) 000-0000",
        },
      ]}
      customFieldsPosition="before"

      // Card appearance
      cardSize="lg"
      cardGradient={{
        type: "grain",
        colors: ["#7300ff", "#eba8ff", "#00bfff", "#2b00ff"],
        colorBack: "#000000",
        softness: 0.5,
        intensity: 0.5,
        noise: 0.25,
      }}
      cardAnimation={{
        flipDuration: 0.6,
        gradientTransitionDuration: 0.5,
      }}
      cardVisibility={{
        chip: true,
        contactless: true,
        brandLogo: true,
        bankName: true,
      }}
      cardStyle={{
        borderRadius: "1rem",
        shadow: "0 25px 50px -12px rgb(0 0 0 / 0.25)",
      }}

      // Card back labels
      cardLabels={{
        bankDisclaimer: "This card is property of the issuing bank.",
        customerService: "Customer Service: 1-800-123-4567",
        authorizedSignature: "AUTHORIZED SIGNATURE",
      }}

      // Form labels (i18n)
      formInputLabels={{
        cardNumber: "Card Number",
        cardholderName: "Cardholder Name",
        expiryDate: "Expiry",
        cvv: "CVV",
        bankName: "Bank Name",
        address: "Address",
        city: "City",
        state: "State",
        zip: "ZIP Code",
        country: "Country",
      }}

      // Form placeholders
      formInputPlaceholders={{
        cardNumber: "0000 - 0000 - 0000 - 0000",
        cardholderName: "JOHN DOE",
        expiryDate: "MM/YY",
        cvv: "•••",
      }}

      // Form styling
      formProps={{
        classNames: {
          submitButton: "bg-zinc-900 hover:bg-zinc-800",
          input: "text-gray-900",
          label: "text-gray-700",
        },
      }}

      // Optional header/footer
      renderHeader={() => (
        <div className="text-center mb-4">
          <h2 className="text-xl font-bold">Secure Payment</h2>
        </div>
      )}
      renderFooter={() => (
        <p className="text-xs text-gray-500 text-center mt-4">
          Your payment is secured with 256-bit SSL encryption.
        </p>
      )}
    />
  );
}

Minimal Setup

<CreditCardWithForm
  onSubmit={(data) => console.log(data)}
  submitLabel="Pay Now"
/>

Detection & Validation API

import {
  detectBrand,
  formatCard,
  maskCard,
  isValidCardNumber,
  isValidExpiry,
  isValidCvv,
} from "credit-card-ui-react";

detectBrand("4111111111111111");      // "visa"
detectBrand("5555555555554444");      // "mastercard"
formatCard("4111111111111111");       // "4111 1111 1111 1111"
maskCard("4111111111111111");         // "************1111"
isValidCardNumber("4111111111111111"); // true
isValidExpiry("12/28");               // true
isValidCvv("123");                    // true

Test Cards

| Brand | Level | Number | CVV | |-------|-------|--------|-----| | Visa | Classic | 4111111111111111 | 123 | | Visa | Gold | 4532015112830366 | 123 | | Visa | Platinum | 4539578763621486 | 123 | | Mastercard | Classic | 5111111111111118 | 123 | | Mastercard | Gold | 5200828282828210 | 123 | | Mastercard | Black | 5555555555554444 | 123 | | Amex | Platinum | 378282246310005 | 1234 | | Discover | Classic | 6011111111111117 | 123 |


Styling

Include the library in your Tailwind config:

// tailwind.config.js
module.exports = {
  content: [
    "./src/**/*.{js,ts,jsx,tsx}",
    "./node_modules/credit-card-ui-react/**/*.{js,ts,jsx,tsx}",
  ],
};

License

MIT