grepsr-ui-elements
Version:
20 lines (19 loc) • 464 B
TypeScript
import { ReactNode } from "react";
import PropTypes from "prop-types";
interface timelineArray {
content: ReactNode | any;
img: any;
id: string | number;
}
interface TimelineProps {
timelineArray: timelineArray[];
}
export { TimelineProps };
declare const GrepsrTimeline: {
(props: TimelineProps): JSX.Element;
defaultProps: {};
propTypes: {
timelineArray: PropTypes.Requireable<any[]>;
};
};
export default GrepsrTimeline;