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

@juspay/blend-design-system

v0.0.37

Published

A comprehensive React component library and design system by Juspay

Readme

Blend Design System

A comprehensive React component library and design system by Juspay, built with TypeScript and styled-components.

npm version License: MIT

🚀 Features

  • 50+ Production-ready Components - Buttons, Forms, Navigation, Data Display, and more
  • TypeScript Support - Full type safety and IntelliSense support
  • Accessible by Default - Built with accessibility best practices using Radix UI primitives
  • Customizable Theming - Flexible design tokens and theme system
  • Modern React - Built for React 19+ with hooks and modern patterns
  • Tree Shakeable - Import only what you need
  • Styled Components - CSS-in-JS with full theming support

📦 Installation

npm install @juspay/blend-design-system
# or
yarn add @juspay/blend-design-system
# or
pnpm add @juspay/blend-design-system

🎯 Quick Start

import React from 'react'
import { Button, Alert, ThemeProvider } from '@juspay/blend-design-system'
import '@juspay/blend-design-system/style.css'

function App() {
    return (
        <ThemeProvider>
            <div>
                <Alert variant="success">Welcome to Blend Design System!</Alert>
                <Button variant="primary" size="medium">
                    Get Started
                </Button>
            </div>
        </ThemeProvider>
    )
}

export default App

📚 Components

Form Components

  • Button - Primary, secondary, and various button styles
  • ButtonGroup - Group related buttons together
  • Inputs - Text, number, textarea, and specialized input components
  • Checkbox - Accessible checkbox with custom styling
  • Radio - Radio button groups
  • Switch - Toggle switches
  • Slider - Range and value sliders
  • SingleSelect - Dropdown selection
  • MultiSelect - Multiple option selection

Navigation

  • Tabs - Horizontal and vertical tab navigation
  • Breadcrumb - Navigation breadcrumbs
  • Menu - Dropdown and context menus
  • Sidebar - Collapsible sidebar navigation

Data Display

  • DataTable - Feature-rich data tables with sorting, filtering
  • StatCard - Statistical information cards
  • Charts - Data visualization components
  • Avatar - User profile pictures
  • AvatarGroup - Multiple avatar display
  • Tags - Label and category tags
  • SplitTag - Tags with actions

Feedback

  • Alert - Success, error, warning, and info alerts
  • Modal - Dialog and modal windows
  • Tooltip - Contextual help tooltips
  • Snackbar - Toast notifications
  • Popover - Floating content containers

Layout

  • Accordion - Collapsible content sections
  • DateRangePicker - Date range selection

🎨 Design Tokens

Blend includes a comprehensive set of design tokens for consistent styling:

import { foundationToken } from '@juspay/blend-design-system'

// Colors
foundationToken.colors.primary[500] // #2B7FFF
foundationToken.colors.gray[100] // #F2F4F8

// Typography
foundationToken.fontSize.headingLG // 24px
foundationToken.fontWeight[600] // 600

// Spacing
foundationToken.spacing[16] // 16px
foundationToken.borderRadius[8] // 8px

🔧 Theming

Customize the design system to match your brand:

import { ThemeProvider, createTheme } from '@juspay/blend-design-system'

const customTheme = createTheme({
    colors: {
        primary: {
            500: '#your-brand-color',
        },
    },
})

function App() {
    return <ThemeProvider theme={customTheme}>{/* Your app */}</ThemeProvider>
}

📖 Documentation

🛠️ Development

# Clone the repository
git clone https://github.com/juspay/blend-design-system.git

# Install dependencies
pnpm install

# Start development
pnpm dev

# Build the library
pnpm build

# Run tests
pnpm test

📝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

📄 License

MIT © Juspay Technologies

🔗 Links


Built with ❤️ by the Juspay Design Team