
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@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 130 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.