Socket
Book a DemoInstallSign in
Socket

@nanogiants/designsystem-react

Package Overview
Dependencies
Maintainers
4
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nanogiants/designsystem-react

This Repository contains the Nanogiants CI Components which can be used in any React Project. For a preview you can see all components in the [Storybook](https://static.wd-app.com/nanogiants-designsystem-react). For the Credentials see 1Password.

npmnpm
Version
0.3.0
Version published
Weekly downloads
0
Maintainers
4
Weekly downloads
 
Created
Source

Nanogiants React Component Library

This Repository contains the Nanogiants CI Components which can be used in any React Project. For a preview you can see all components in the Storybook.
For the Credentials see 1Password.

Usage

npm i @nanogiants/designsystem-react

In your App:

import {
  NanoButton,
  NanoH1,
  NanoH2,
  NanoH3,
  NanoH4,
  NanoH5,
  NanoH6,
  NanoLogo,
  NanoTextInput,
} from '@nanogiants/designsystem-react';
import '@nanogiants/designsystem-react/assets/fonts.css';
function App() {
  const [testTextInputValue, setTestTextInputValue] = useState('');

  return (
    <div>
      <NanoH1>HEADLINE</NanoH1>
      <NanoH2>HEADLINE2</NanoH2>
      <NanoH3>HEADLINE3</NanoH3>
      <NanoH3 variant="sharpgrotesk">HEADLINE3 Sharp</NanoH3>
      <NanoH4>HEADLINE4</NanoH4>
      <NanoH5>HEADLINE5</NanoH5>
      <NanoH6>HEADLINE6</NanoH6>
      <NanoButton disabled>Button</NanoButton>
      <NanoTextInput
        label="Label"
        value={testTextInputValue}
        onChange={(e) => setTestTextInputValue(e.target.value)}
      ></NanoTextInput>
      <NanoLogo></NanoLogo>
    </div>
  );
}

FAQs

Package last updated on 09 Apr 2021

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