# tsq-uikit

> [![CircleCI](https://circleci.com/gh/tsq/uikit/tree/develop.svg?style=shield&circle-token=0a521632a6ec2c6bf503cd44b3c6042aeb401e4d)](https://circleci.com/gh/tsq/uikit/tree/develop)

Latest version **1.0.10** (published 2021-02-14) · ISC license · 0 weekly downloads

## Install

```sh
npm install tsq-uikit
pnpm add tsq-uikit
yarn add tsq-uikit
bun add tsq-uikit
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.10 |
| Published | 2021-02-14 |
| First published | 2021-02-12 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | tangshiqiang |

## Links

- npm: https://www.npmjs.com/package/tsq-uikit
- npm.io page: https://npm.io/package/tsq-uikit

## Recent versions

- 1.0.10 (latest) — 2021-02-14
- 1.0.9 — 2021-02-14
- 1.0.8 — 2021-02-14
- 1.0.7 — 2021-02-14
- 1.0.6 — 2021-02-14
- 1.0.5 — 2021-02-12
- 1.0.4 — 2021-02-12
- 1.0.3 — 2021-02-12
- 1.0.2 — 2021-02-12
- 1.0.1 — 2021-02-12
- 1.0.0 — 2021-02-12

## README

# UIKIT

[![CircleCI](https://circleci.com/gh/tsq/uikit/tree/develop.svg?style=shield&circle-token=0a521632a6ec2c6bf503cd44b3c6042aeb401e4d)](https://circleci.com/gh/tsq/uikit/tree/develop)

A React UI library.

## Features

- Written in Typescript with predictable static types
- No third dependencies, so the size is very small `<100KB`
- Very friendly for learning React.js and Typescirpt

## Install

by `npm`

```sh
npm install tsq-uikit
```

by `yarn`

```
yarn add tsq-uikit
```

## Usage

```tsx
import React from "react";
import { Button } from "tsq-uikit";

function Demo() {
  return <Button>Default Button</Button>;
}

export default Demo;
```

And import css manually, for example in your `index.jsx` or `index.tsx`:

```tsx
import "tsq-uikit/dist/index.css";
```

---
_Source: https://npm.io/package/tsq-uikit · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
