ncb-component
v1.0.19
Published
NCB design system
Downloads
836
Readme
An enterprise-class UI design language and React UI library.
[![codecov][codecov-image]][codecov-url]
✨ Features
- 🌈 Enterprise-class UI designed for web applications.
- 📦 A set of high-quality React components out of the box.
- 🛡 Written in TypeScript with predictable static types.
- ⚙️ Whole package of design resources and development tools.
- 🌍 Internationalization support for dozens of languages.
- 🎨 Powerful theme customization based on CSS-in-JS.
🖥 Environment Support
- Modern browsers
- Server-side Rendering
- Electron
| Edge | Firefox | Chrome | Safari | Electron | | --- | --- | --- | --- | --- | | Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
📦 Install
npm install ncb-component
yarn add ncb-component
pnpm add ncb-component
🔨 Usage
import { Button } from "ncb-component/button";
import { DatePicker } from "ncb-component/DatePicker";
//to using provider customer
import { Provider as NcbProvider } from "ncb-component/provider";
export default () => (
<NcbProvider>
<Button type="primary">PRESS ME</Button>
<DatePicker placeholder="select date" />
</NcbProvider>
);