
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@juspay/blend-design-system
Advanced tools
A comprehensive React component library and design system by Juspay
A comprehensive React component library and design system by Juspay, built with TypeScript and styled-components.
npm install @juspay/blend-design-system
# or
yarn add @juspay/blend-design-system
# or
pnpm add @juspay/blend-design-system
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
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
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>
}
# 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
We welcome contributions! Please see our Contributing Guide for details.
MIT © Juspay Technologies
Built with ❤️ by the Juspay Design Team
FAQs
A comprehensive React component library and design system by Juspay
The npm package @juspay/blend-design-system receives a total of 253 weekly downloads. As such, @juspay/blend-design-system popularity was classified as not popular.
We found that @juspay/blend-design-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.