spurs-react-seekbar
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

react-seekbar

UI component for selecting values by dragging a bar

Preview

installation

  npm install react-seekbar
  
  yarn add react-seekbar

Usage

docs and example usage can be found here

import { useState } from 'react';
import { Seekbar } from 'react-seekbar';

export default function YourComponent() {
  const [position, setPosition] = useState(0);

  const handleSeek = (position) => {
    setPosition(position);
  };

  return <Seekbar position={position} duration={100000} onSeek={handleSeek} />;
}

Package Sidebar

Install

npm i spurs-react-seekbar

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

4.19 kB

Total Files

3

Last publish

Collaborators

  • spursjp