import React, { FC, HTMLAttributes } from 'react';
import classnames from 'classnames';
export interface TimelineProps extends HTMLAttributes {
/** Classi aggiuntive da usare per il componente TimelineProps */
className?: string;
testId?: string;
}
export const Timeline: FC = (props) => {
const { className, testId, ...attributes } = props;
const { children, ...rest } = attributes;
const timelineWrapper = classnames(className, 'it-timeline-wrapper');
return (
{children}
);
};