# react-lib-feedbacky

> Feedbacky is a react component library that can be used for collecting feedback from users as a text then sending it to database.

Latest version **3.0.9** (published 2022-03-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-lib-feedbacky
pnpm add react-lib-feedbacky
yarn add react-lib-feedbacky
bun add react-lib-feedbacky
```

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.0.9 |
| Published | 2022-03-24 |
| First published | 2022-03-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 9 |
| Unpacked size | 588.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Ilgaz Zararsız |
| Maintainers | ilgazz |

## Links

- npm: https://www.npmjs.com/package/react-lib-feedbacky
- Repository: https://github.com/ilgazzararsiz/feedbacky-react-component
- Homepage: https://github.com/ilgazzararsiz/feedbacky-react-component#readme
- Issues: https://github.com/ilgazzararsiz/feedbacky-react-component/issues
- npm.io page: https://npm.io/package/react-lib-feedbacky

## Dependencies (9)

- [postcss](https://npm.io/package/postcss.md) ^8.1.7
- [react-scripts](https://npm.io/package/react-scripts.md) ^5.0.0
- [@emotion/react](https://npm.io/package/@emotion/react.md) ^11.8.2
- [postcss-loader](https://npm.io/package/postcss-loader.md) ^4.0.4
- [@emotion/styled](https://npm.io/package/@emotion/styled.md) ^11.8.1
- [rollup-plugin-img](https://npm.io/package/rollup-plugin-img.md) ^1.1.0
- [@rollup/plugin-babel](https://npm.io/package/@rollup/plugin-babel.md) ^5.3.1
- [rollup-plugin-commonjs](https://npm.io/package/rollup-plugin-commonjs.md) ^10.1.0
- [rollup-plugin-node-resolve](https://npm.io/package/rollup-plugin-node-resolve.md) ^5.2.0

## Recent versions

- 3.0.9 (latest) — 2022-03-24
- 3.0.8 — 2022-03-24
- 3.0.7 — 2022-03-24
- 3.0.6 — 2022-03-24
- 3.0.5 — 2022-03-24
- 3.0.4 — 2022-03-24
- 3.0.3 — 2022-03-24
- 3.0.2 — 2022-03-24
- 3.0.0 — 2022-03-24
- 1.0.0 — 2022-03-23

## README

# feedbacky-react-component

Feedbacky is a react component library that can be used for collecting feedback from users as a text then sending it to
database.

## To Implement Feedbacky

```shell
npm i react-lib-feedbacky
```

## To Import Feedbacky As Default

```javascript
import {Feedbacky} from "react-lib-feedbacky";

export default function App() {
    const props = {
        applicationId: "TEST",
        fontColor: "#fff",
        formButtonText: "SEND",
        formButtonColor: "#f37919",
        formButtonTextColor: "#000000",
        modalBackgroundColor: "#ffffff",
        formTitle: "SEND YOUR FEEDBACK",
        responseTitle: "WE HAVE GOT YOUR FEEDBACK",
        responseTitleColor: "#1d851d",
        feedbackyApiUrl: "https://feedbacky-api-go.herokuapp.com/feedback",
    };

    return (
        <div className="App">
            <Feedbacky {...props} />
        </div>
    );
}
```

## Documentation

| Props*               | Description |
|----------------------| ----------- |
| applicationId        | Application ID or name where feedbacks come from
| fontColor            | Font color for the form
| formButtonText       | Submit form button text
| formButtonColor      | Submit form button color
| formButtonTextColor  | Submit form button text color
| modalBackgroundColor | Modal background color
| formTitle            | Title for the requested message
| responseTitle        | Title for the response message
| responseTitleColor   | Color for response title
| feedbackyApiUrl   | Api Url for the feedbacky app

*all props are default as string.


## [Demo](https://codesandbox.io/s/frosty-cohen-ygs808)

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