# React UI Library 

## Library Overview
Developed by Marco Duarte and David Artavia, this library leverages React, CSS, and TypeScript to provide a comprehensive set of design components.

Key Features:

- **Reusable Components** – Build scalable and maintainable UIs efficiently.

- **Responsive Design** – Ensure seamless adaptability across all devices.

- **User-Friendly Interface** – Simplify development with intuitive and pre-styled components.

This library empowers developers to create modern, professional, and visually appealing designs with minimal effort.

## Instalation on others projects
```sh
npm i react-css-library
```
or
```sh
yarn add react-css-library
```
## Imports
1. You can use them like this:
Example:
```sh
import { Card } from "react-css-library";
```
## Install packages (`if use clone github`)
1. Clone the repository:
   ```sh
   git clone https://github.com/marcoduarte21/react-css-library.git
   ```
2. Navigate to the project directory:
   ```sh
   cd react-css-library
   ```
3. Install the dependencies:
   ```sh
   npm install
   ```
## Development
1.Make updates and upload to github and npm (publish the project)
   ```sh      
npm login # for the first time puslished
npm version patch  # upgrade version
npm publish # publish on npm
   ```
## Note: 
Check the `package.json` file to see if the library was installed successfully.

You have to see: 
```sh
 "dependencies": {
    "react-css-library": "^0.1.3",
  },
```
