UNPKG

react-timeline

Version:

A simple configurable react timeline component

10 lines (9 loc) 277 B
import { Theme } from 'styled-components'; export interface Props { height: number; width: number; } export interface ThemedProps extends Props { theme: Theme; } export declare const MainPanel: import("styled-components").StyledComponent<"div", any, Props, never>;