go-to-button
Version:
go to ref button
38 lines (26 loc) • 773 B
Markdown
Simple go to button, with ref from react and custom styles
```bash
npm i go-to-button
```
```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
```
[](https://choosealicense.com/licenses/mit/)