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

kunci-ui

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kunci-ui

KunciLab UI kit -- Made for Kunci Ecosystem

latest
npmnpm
Version
0.0.13
Version published
Maintainers
2
Created
Source

Kunci UI

Kunci React components library

🚀 Usage

Note: Kunci UI depends on tailwindcss, please follow this guide before moving on.

Install

yarn add kunci-ui

Inside tailwind.config.js

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./src/**/*.{js,ts,jsx,tsx}",
    "node_modules/kunci-ui/dist/kunciui.es.js",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}

Then, you can use components inside your project:

import { Button } from 'kunci-ui'

function App() {
  return <Button>Hi there!</Button>
}

export default App

🔌 Contributing

We use storybook for developing components, to start:

# Install dependencies
yarn install

# Run Storybook for development
yarn dev

To test the package, you can build a package and test it in other projects.

# Build
yarn build

# Pack and publish...
yarn pack

FAQs

Package last updated on 27 Sep 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