2.0.0 • Published 3 years ago

react-timelinev2 v2.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

React Timeline

Reusable react components to create a good looking and responsive timeline out the box!

Table of contents

Installation

npm

npm install react-timelinev2

Yarn

yarn add react-timelinev2

Usage

import React from "react";
import { Timeline, TimelineItem } from "react-timelinev2";

function App() {
  return (
    <div className="App">
      <Timeline>
        <TimelineItem side="left" title="hello world" date="2020">
          Some text
        </TimelineItem>
        <TimelineItem shadows hoverShadow side="left" title="hello world" date="2020">
          I will have shadows!
        </TimelineItem>
        <TimelineItem side="right" title="hello world" date="2020">
          Some text
        </TimelineItem>
        <TimelineItem side="right" title="hello world" date="2020">
          Some text
        </TimelineItem>
      </Timeline>
    </div>
  );
}

Screenshot

screenshot

Playground

https://codesandbox.io/s/k2ix2

Available Props

Timeline

Optiontypedescriptionrequired
timelineBgstringSet a background color for the timelinefalse

TimelineItem

Optiontypedescriptionrequired
titlestringset the titletrue
sidestringleft or righttrue
datestringset a datetrue
bgColorstringset a background color for the timeline itemfalse
bodyTextColorstringSet a color for the body textfalse
dateColorstringSet a color for datefalse
titleBgstringSet a background color for the titlefalse
titleColorstringSet a color for titlefalse
borderRadiusstringSet a border radius for the timeline itemfalse
shadowsbooleanSets a box-shadowfalse
hoverShadowbooleanSets a box-shadow on hover onlyfalse

Supporting react-timelinev2

All stars/forks are appreciated!

Made with ❤ and TypeScript

License

MIT

2.0.0

3 years ago

1.5.0

3 years ago

1.4.0

3 years ago

1.3.3

3 years ago

1.3.2

4 years ago

1.3.1

4 years ago

1.3.0

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago