
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@drivenets/design-system
Advanced tools
Official DriveNets Design System for application development in React.
Official DriveNets Design System for application development in React.
First, install the package via your preferred package manager:
npm install @drivenets/design-system
# or
pnpm install @drivenets/design-system
# or
yarn add @drivenets/design-system
Then, import the css styles in your application root (e.g., main.tsx or App.tsx):
import '@drivenets/design-system/index.min.css';
You'll also need to import the relevant fonts in your index.html file.
We recommend using our provided Vite plugin to automatically include the necessary font links. You can find more information about the plugin in the Vite Plugin README.
Or you can manually add the following lines to the <head> section of your index.html file:
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fira+Mono:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20,400,0..1,0&display=block" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20,400,0..1,0&display=block" />
You can now use the DriveNets Design System components in your React application. Here's a simple example:
import { DsButton } from '@drivenets/design-system';
export const App = () => {
return (
<DsButton onClick={() => alert('Button clicked!')}>Click Me</DsButton>
);
};
FAQs
Official DriveNets Design System for application development in React.
We found that @drivenets/design-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.