@readyio/design
v1.0.29
Published
A flexible and scalable design system used for Ready
Downloads
9
Readme
Ready Design System
✨ 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 in every detail.
📦 Install
npm install @readyio/design
yarn add @readyio/design
🔨 Usage
import React from 'react';
import { Button, DatePicker } from 'ready-design';
const App = () => (
<>
<Button type="primary">PRESS ME</Button>
<DatePicker placeholder="select date" />
</>
);
TypeScript
ready-design
is written in TypeScript with complete definitions, check Use in TypeScript to get started.