# react-profghost-components

> A react component library with animated components

Latest version **0.1.8** (published 2019-12-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-profghost-components
pnpm add react-profghost-components
yarn add react-profghost-components
bun add react-profghost-components
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.8 |
| Published | 2019-12-27 |
| First published | 2019-12-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 7.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Shashi Srinath |
| Maintainers | profghost |
| Keywords | react component, react, react component library, react animated components |

## Links

- npm: https://www.npmjs.com/package/react-profghost-components
- Repository: https://github.com/profghost/react-profghost-components
- Issues: https://github.com/profghost/react-profghost-components/issues
- npm.io page: https://npm.io/package/react-profghost-components

## Dependencies (4)

- [react](https://npm.io/package/react.md) ^16.12.0
- [react-dom](https://npm.io/package/react-dom.md) ^16.12.0
- [react-spring](https://npm.io/package/react-spring.md) ^8.0.27
- [react-scripts](https://npm.io/package/react-scripts.md) 3.3.0

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.1.8 (latest) — 2019-12-27
- 0.1.7 — 2019-12-22
- 0.1.6 — 2019-12-22
- 0.1.5 — 2019-12-22
- 0.1.4 — 2019-12-22
- 0.1.3 — 2019-12-22
- 0.1.1 — 2019-12-22
- 0.1.0 — 2019-12-22

## README

<div align="center">
    <p align="center">
            <img src="https://raw.githubusercontent.com/profghost/react-profghost-components/master/src/assets/logo/logo-with-background.png" alt="React Hook Form Logo - React hook custom hook for form validation" width="300px" />
    </p>
</div>

<p align="center">Fluid , Animated , Good Looking Components to use with react</p>

<a href='https://www.npmjs.com/package/react-profghost-components'>
 <img src="https://img.shields.io/npm/dm/react-profghost-components?style=flat-square)(https://www.npmjs.com/package/react-profghost-components" />
</a>
<a href="https://www.npmjs.com/package/react-profghost-components" >
 <img src="https://img.shields.io/bundlephobia/minzip/react-profghost-components?style=flat-square)(https://www.npmjs.com/package/react-profghost-components" />
</a>

![Twitter Follow](https://img.shields.io/twitter/follow/ShashiSrinath?style=social)

## Features

- high quality fluid animations
- customizable

## Install

    $ npm install react-profghost-components

## Example

<h3>Button</h3>

```jsx
import React from 'react';
import  {Button} from 'react-profghost-components';

const App = () => {

const colors = {
        boxShadow: '#101010',
        background: '#ffaaaa',
        color: '#ffffff',
        
        //below values will generate automatically based on background color if not provided
        hoverBackground: '#ffffff',
        clickedBackground: '#ffffff'
    };

const events = {
    onMouseDown: () => console.log('mouse pressed') 
}

const styles = {
    padding: '10px 20px'
}

  return (
        <Button> Click Me! </Button>

        <Button onClick={() => console.log('clicked')}> Click Me! </Button>

        <Button colors={colors}> Click Me! </Button>

        <Button events={events}> Click Me! </Button>

        <Button styles={styles}> Click Me! </Button>

        <Button classname='my-awesome-button'> Click Me! </Button>
  );
}
```

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