React component that creates a fixed, clickable, progress bar.
It is built using React hooks
.
Click on anywhere on the progress bar to automatically scroll the page.
yarn add react-styled-clickable-progress-bar
npm install react-styled-clickable-progress-bar
import React from "react";
import ProgressBar from "react-styled-clickable-progress-bar";
const Index = props => <ProgressBar />
export default Index;
import React from "react";
import styled from 'styled-components'
import ProgressBar from "react-styled-clickable-progress-bar";
const Scroll = styled(ProgressBar)`
top: 40px;
`
const Index = props => <Scroll />
export default Index;
import React from "react";
import ProgressBar from "react-styled-clickable-progress-bar";
const Index = props => <Scroll top={"40px"}/>
export default Index;
<ProgressBar
top="0px"
left="0px"
height="5px"
color="black"
>