Socket
Socket
Sign inDemoInstall

@nordnet/ui

Package Overview
Dependencies
Maintainers
4
Versions
1177
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nordnet/ui

[![NPM version][npm-image]][npm-url] [![Build Status](https://github.com/nordnet/ui/workflows/build/badge.svg)](https://github.com/nordnet/ui/actions) [![Coverage Status][codecov-image]][codecov-url] [![Dependency Status][depstat-image]][depstat-url]


Version published
Weekly downloads
11
decreased by-45%
Maintainers
4
Weekly downloads
 
Created
Source

@nordnet/ui

NPM version Build Status Coverage Status Dependency Status

Installation

npm install --save @nordnet/ui # or
yarn add @nordnet/ui

Usage

// src/root.js

import { createRoot } from 'react-dom/client';
import { ThemeProvider } from 'styled-components';
import { theme } from '@nordnet/ui';
import App from './App';

const container = document.getElementById('app');
const root = createRoot(container); // createRoot(container!) if you use TypeScript
root.render(
  <ThemeProvider theme={theme}>
    <App />
  </ThemeProvider>,
);

// src/App.js
import { Button } from '@nordnet/ui';

const App = (props) => (
  <div>
    <Button size="l" variant="secondary">
      Hit me
    </Button>
  </div>
);

export default App;

Developing

Developing workflow can be found in the contributing guidelines.

Contributing

Everyone is welcome to contribute. Please take a moment to review the contributing guidelines.

Upgrading from semantic-release@16.0.0-beta.18

To upgrade to latest 17.1.1 you need to upgrade away from beta first:

License

This open source project released by Nordnet is licensed under the MIT license.

MIT (http://www.opensource.org/licenses/mit-license.php)

FAQs

Package last updated on 08 Apr 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc