@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
12 lines (11 loc) • 487 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { CSSProperties, PropsWithChildren } from "react";
import { FlexAlign, FlexDirection, FlexJustify } from "../flex";
export interface TimeLineContentProps extends PropsWithChildren<ViewProps> {
style?: CSSProperties;
direction?: FlexDirection;
align?: FlexAlign;
justify?: FlexJustify;
}
declare function TimeLineContent(props: TimeLineContentProps): JSX.Element;
export default TimeLineContent;