1.0.29 • Published 10 months ago

@readyio/design v1.0.29

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Ready Design System

npm.io

✨ 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.