# Go To Button

Simple go to button, with ref from react and custom styles

## Installation



```bash
npm i go-to-button
```

## Usage

```python
import GoToButton from 'go-to-button'

const terminateRef = useRef(null);
   <GoToButton
        isVisible //required to see the button, false if you dont want it
        textColor="red"
        backgroundColor="white"
        icon="fa fa-window-close" //icon class from fontawesome
        iconColor="red"
        buttonText="Terminate"
        borderColor="red"
        width="120px"
        height="50px"
        buttonRef={terminateRef} //put your ref here
      />

<div ref={terminateRef} /> // the div you want to go
```



## License
[MIT](https://choosealicense.com/licenses/mit/)