UNPKG

@brizy/ui

Version:
6 lines (5 loc) 300 B
import AntTimeLineItem from "antd/lib/timeline/TimelineItem"; import * as React from "react"; export const TimeLineItem = ({ color, dot, label, children, className }) => { return (React.createElement(AntTimeLineItem, { className: className, color: color, dot: dot, label: label }, children)); };