UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

17 lines (16 loc) 840 B
import type { TimelineCssVariables, TimelineFactory, TimelineProps, TimelineStylesNames } from './Timeline'; import type { TimelineItemFactory, TimelineItemProps, TimelineItemStylesNames } from './TimelineItem/TimelineItem'; export { Timeline } from './Timeline'; export { TimelineItem } from './TimelineItem/TimelineItem'; export type { TimelineProps, TimelineStylesNames, TimelineCssVariables, TimelineFactory, TimelineItemProps, TimelineItemStylesNames, TimelineItemFactory, }; export declare namespace Timeline { type Props = TimelineProps; type StylesNames = TimelineStylesNames; type CssVariables = TimelineCssVariables; type Factory = TimelineFactory; namespace Item { type Props = TimelineItemProps; type StylesNames = TimelineItemStylesNames; type Factory = TimelineItemFactory; } }