This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

react-timelinev2

2.0.0 • Public • Published

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

Option type description required
timelineBg string Set a background color for the timeline false

TimelineItem

Option type description required
title string set the title true
side string left or right true
date string set a date true
bgColor string set a background color for the timeline item false
bodyTextColor string Set a color for the body text false
dateColor string Set a color for date false
titleBg string Set a background color for the title false
titleColor string Set a color for title false
borderRadius string Set a border radius for the timeline item false
shadows boolean Sets a box-shadow false
hoverShadow boolean Sets a box-shadow on hover only false

Supporting react-timelinev2

All stars/forks are appreciated!

Made with and TypeScript

License

MIT

Dependents (0)

Package Sidebar

Install

npm i react-timelinev2

Weekly Downloads

2

Version

2.0.0

License

MIT

Unpacked Size

14.7 kB

Total Files

10

Last publish

Collaborators

  • casper124578