design-react-kit
Version:
Componenti React per Bootstrap 5
9 lines • 438 B
JavaScript
import React from 'react';
import classnames from 'classnames';
export const Timeline = (props) => {
const { className, testId, ...attributes } = props;
const { children, ...rest } = attributes;
const timelineWrapper = classnames(className, 'it-timeline-wrapper');
return (React.createElement("div", { className: timelineWrapper, ...rest, "data-testid": testId }, children));
};
//# sourceMappingURL=TimelineWrapper.js.map