New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details → →
Socket
Book a DemoSign in
Socket

verticalsolutions-design-system

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

verticalsolutions-design-system

A reusable React component library for Vertical Solutions, providing consistent UI components and design tokens.

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

@verticalsolutions/design-system

A reusable React component library for Vertical Solutions, providing consistent UI components and design tokens.

Installation

npm install @verticalsolutions/design-system
# or
yarn add @verticalsolutions/design-system

Usage

Import components directly:

import { Buttons, Typography, PageHeader } from '@verticalsolutions/design-system';

function App() {
  return (
    <div>
      <PageHeader title="Dashboard" />
      <Buttons.FilledButton label="Click me" onClick={() => alert('Clicked!')} />
      <Typography variant="h2Bold">Welcome</Typography>
    </div>
  );
}

Importing Global Styles

To apply the design system's global styles and fonts, import the bundled CSS in your app's entry point (e.g., src/main.tsx or App.tsx):

import '@verticalsolutions/design-system/src/style.css';

This will apply typography tokens, font imports, and base styles.

Peer Dependencies

  • react
  • react-dom
  • @mui/material
  • @mui/icons-material
  • react-icons

Ensure these are installed in your project.

Development

  • Run npm run dev to start the Storybook or dev server.
  • Run npm run build to build the library for publishing.

License

MIT

FAQs

Package last updated on 14 Jul 2025

Did you know?

Socket

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.

Install

Related posts