UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

25 lines (24 loc) 767 B
export interface GenTeaserEventProps { /** The start date & time of the event */ startDate?: string; /** The end date & time of the event */ endDate?: string; /** The address of the event */ location?: string; /** Any details about the event */ details?: string; /** What type of calendars you would like users to be able to add to. 'google', 'yahoo', and 'outlookcom' if passed will render as specific formats, all others render as base ics format. */ calendars?: string[]; /** The title of the event */ title?: string; /** A description of the event */ description?: string; } /** * Event */ declare const GenTeaserEvent: (props: GenTeaserEventProps) => any; export default GenTeaserEvent;