Rocket.Chat

# `@rocket.chat/ui-kit` > Interactive UI elements for Rocket.Chat Apps --- [![npm@latest](https://img.shields.io/npm/v/@rocket.chat/ui-kit/latest?style=flat-square)](https://www.npmjs.com/package/@rocket.chat/ui-kit/v/latest) [![npm@next](https://img.shields.io/npm/v/@rocket.chat/ui-kit/next?style=flat-square)](https://www.npmjs.com/package/@rocket.chat/ui-kit/v/next) ![npm downloads](https://img.shields.io/npm/dw/@rocket.chat/ui-kit?style=flat-square) ![License: MIT](https://img.shields.io/npm/l/@rocket.chat/ui-kit?style=flat-square) ![deps](https://img.shields.io/librariesio/release/npm/@rocket.chat/ui-kit?style=flat-square) ![npm bundle size](https://img.shields.io/bundlephobia/min/@rocket.chat/ui-kit?style=flat-square) ## Install Add `@rocket.chat/ui-kit` as a dependency: ```sh npm i @rocket.chat/ui-kit # or, if you are using yarn: yarn add @rocket.chat/ui-kit ``` ## Contributing Contributions, issues, and feature requests are welcome!
Feel free to check the [issues](https://github.com/RocketChat/Rocket.Chat/issues). ### Building As this package dependends on others in this monorepo, before anything run the following at the root directory: ```sh yarn build ``` ### Linting To ensure the source is matching our coding style, we perform [linting](). Before commiting, check if your code fits our style by running: ```sh yarn lint ``` Some linter warnings and errors can be automatically fixed: ```sh yarn lint-and-fix ``` ### Running tests Whenever possible, add tests to describe exactly what your code do. You can run them by yourself: ```sh yarn test ```