UNPKG

@prefecthq/prefect-design

Version:

A collection of low-level Vue components.

8 lines (7 loc) 367 B
import { Icon } from '../types/icon'; export type TimelineItem = { icon?: Icon; }; export declare const timelineLayouts: readonly ["date-left", "date-right", "stacked-left", "stacked-right", "stacked-center"]; export type TimelineLayout = typeof timelineLayouts[number]; export type TimelineLayoutFunction = (item: TimelineItem, index: number) => TimelineLayout;