
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@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 768 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.