@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
9 lines (8 loc) • 355 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { PropsWithChildren } from "react";
import { TimelinePosition } from "./timeline.shared";
export interface TimelineProps extends PropsWithChildren<ViewProps> {
position?: TimelinePosition;
}
declare function Timeline(props: TimelineProps): JSX.Element;
export default Timeline;