@renli/renli-ui
v0.0.2
Published
> Renli UI library for React and React Native, originating from Renli Design System
Downloads
2
Readme
Renli UI library for React and React Native, originating from Renli Design System
✨ Features
- Enterprise-class UI.
- A set of high-quality React components out of the box.
- Written in TypeScript with predictable static types.
- Powerful theme customization in every detail.
👍 Install
npm i renli-ui or yarn add renli-ui
👌 Usage
import React, { Component } from "react";
import { Button ,ThemeProvider, theme } from "renli-ui/react";
const App = () => {
render() {
return (
<ThemeProvider theme={theme.dark}>
<Button>Click Me</Button>
</ThemeProvider>
}
}