# Momentum UI React [](https://circleci.com/gh/momentum-design/momentum-ui/)  [](https://github.com/momentum-design/momentum-ui/blob/main/react/LICENSE) ⚠️ **Deprecation Notice:** This library is deprecated and will no longer receive new features or updates. Please migrate to [Momentum Design Components](https://www.npmjs.com/package/@momentum-design/components) for ongoing support and future development. **`Momentum UI React`** is a resuable, component based, flexible React library available as npm module. It provides set of UI components and utilities. The git repo can be cloned from the [momentum-ui monorepo](https://github.com/momentum-design/momentum-ui) and found at [https://github.com/momentum-design/momentum-ui/tree/main/react](https://github.com/momentum-design/momentum-ui/tree/main/react). ## Goals * **Independent** — pick and use only the components you need. * **Styled** — override styles of components by `className` and `style` properties. * **Customizable** — properties allow many different config options to suit your app. * **Performant** - high performance guaranteed with use of CSS3 Flexbox and non-bloated architecture. * **Reliable** — each component is rigorously tested. ## Getting Started To use @momentum-ui/react in your application follow below steps: ### Step 1 - Install and add @momentum-ui/react to your npm package dependencies #### Using npm ```js npm i -S @momentum-ui/react ``` #### Using yarn ```js yarn add @momentum-ui/react ``` ### Step 2. Import Momentum UI React components in your app Use ES6 import statement to import the component that you want to use: ```jsx import { Button } from '@momentum-ui/react'; // or import Button from from '@momentum-ui/react/button'; ... ...