Modern, type-safe billing and subscription management components for React, built with TypeScript and Tailwind CSS. Designed to work seamlessly alongside shadcn/ui.
- Overview
- Features
- Components
- Quick Example
- Tech Stack
- Quick Start
- Installation in Your Project
- Documentation
- Contributing
- Contributors
- License
Billing SDK provides production-ready UI building blocks for pricing, usage, and subscription workflows. Drop them into your app, wire up your data, and ship faster with consistent UX.
- Ready-to-use components: End-to-end billing and subscription building blocks
- Multiple themes: Classic, Minimal, and custom theme tokens
- Responsive by default: Optimized for mobile, tablet, and desktop
- TypeScript-first: Strongly typed props for safe composition
- Easy integration: One-command install via CLI or shadcn/ui registry
- Payment Method Manager: Manage credit cards and ACH accounts for billing. Docs
- Pricing Tables: Multiple variants for different use cases
- Subscription Management: Manage plans, status, and details
- Usage Meters: Linear and circular quota indicators
- Banner Notifications: Announcements and promotional banners
- Plan Updates: Upgrade/downgrade flows with clear affordances
- Cancellation Flow: Guided cancellation with retention patterns
import { PricingTableOne } from "@/components/billingsdk/pricing-table-one";
const plans = [
{
id: "starter",
title: "Starter",
price: 9,
period: "month",
features: ["100 requests", "Basic support", "1 project"],
popular: false,
},
{
id: "pro",
title: "Pro",
price: 29,
period: "month",
features: ["Unlimited requests", "Priority support", "10 projects"],
popular: true,
},
];
export default function App() {
return (
<PricingTableOne
plans={plans}
title="Choose your plan"
description="Select the plan that works best for you"
onPlanSelect={(planId) => {
console.log("Selected plan:", planId);
}}
theme="classic"
size="medium"
/>
);
}
- Runtime: React 19, Next.js 15
- Language: TypeScript
- Styling: Tailwind CSS
- UI: shadcn/ui
- Animation: Motion
- Install dependencies
npm install
- Start the development server
npm run dev
- Open
http://localhost:3000
For complete project setup with framework integration:
# Initialize billing to a new project
npx @billingsdk/cli init
# Add individual components
npx @billingsdk/cli add pricing-table-one
Add Billing SDK components to your existing shadcn/ui project:
npx shadcn@latest add https://billingsdk.com/r/[component-name].json
Explore docs, guides and interactive examples:
See CONTRIBUTING.md for development setup, project structure, and contribution guidelines.
Thanks to all our amazing contributors for their support and code!
This project is licensed under the GNU General Public License (GPL), which allows you to use, modify, and distribute the software freely, provided that any derivative works are also distributed under the same license.