1.0.1 • Published 2 years ago

royaltyz-uikit v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Royaltiz UIkit

Royaltiz UIkit is a set of React components and hooks used to build pages on Defi Finance apps. It also contains a theme file for dark and light mode.

Install

npm i

Setup

Theme

Before using UIkit, you need to provide the theme file to styled-component.

import { ThemeProvider } from 'styled-components'
import { light, dark } from ''
...
<ThemeProvider theme={isDark}>...</ThemeProvider>

Reset

A reset CSS is available as a global styled component.

import { ResetCSS } from ''
...
<ResetCSS />

Types

This project is built with Typescript and export all the relevant types.

Publish

  1. Login as admin user
  2. Change version on package.json
  3. Run:
npm run build
npm publish
// npm run build && npm publish

`