import React from 'react' import type { TimelineProps } from './timeline' import { classNames } from '../../utils/classNames' import styles from './timeline.module.scss' export type Props = TimelineProps & { children: React.ReactNode } const Timeline = ({ theme, counter, alternate, centered, color, textColor, className, children }: Props) => { const classes = classNames([ styles.timeline, theme && theme.split(' ').map(style => styles[style]), alternate && styles.alternate, centered && styles.centered, className ]) const styleVariables = { ...(color && { '--w-timeline-color': color }), ...(textColor && { '--w-timeline-text-color': textColor }), ...(counter && { '--w-timeline-counter': counter }) } as React.CSSProperties return ( ) } export default Timeline