UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

11 lines (10 loc) 305 B
export interface EventTimeProps { /** The start date of the event. */ startDate: Date; /** The end date of the event. */ endDate: Date; /** Details around the event. */ details?: string | object; } declare const EventTime: (props: EventTimeProps) => any; export default EventTime;