import type { IconProps } from '../Icon/icon'

export type TimelineItemProps = {
    title?: string
    titleTag?: string
    icon?: IconProps['type'] | string
    className?: string
}
