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

@nurkit/theme

Package Overview
Dependencies
Maintainers
5
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nurkit/theme

Nurkit UI component library for React.

latest
npmnpm
Version
1.3.0
Version published
Maintainers
5
Created
Source

@nurkit/theme

Alternative theme for the Chakra UI and Nurkit components with simple styles that are intended to be used in prototyping. This theme allows you to modify the default Chakra UI styles, not override it.

The nomenclature used in this theme comes from the default Chakra UI theme, which, in turn, is based on the specification created by System UI.

Installation

Nurkit is based on Chakra UI, so you need to install it before proceeding.

Inside your React project directory, run any of the following commands to install this package.

npm install @nursoft/theme
yarn add @nursoft/theme

Set Up Provider

For Nurkit components to work properly, their styles must be provided through the ChakraProvider:

import React from "react";

import { ChakraProvider, extendTheme } from "@chakra-ui/react";
import { theme } from "@nurkit/theme";

const App = () => (
  <ChakraProvider theme={extendTheme(theme)}>
    <App />
  </ChakraProvider>
);

FAQs

Package last updated on 03 Mar 2022

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