
Security News
Vite+ Joins the Push to Consolidate JavaScript Tooling
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
@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 229 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
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
Security News
Ruby Central’s incident report on the RubyGems.org access dispute sparks backlash from former maintainers and renewed debate over project governance.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.