UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

65 lines 3.02 kB
/** * GenTeaser module. * @module @massds/mayflower-react/GenTeaser * @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser * @requires module:@massds/mayflower-assets/scss/01-atoms/button-with-icon * @requires module:@massds/mayflower-assets/scss/01-atoms/button-search * @requires module:@massds/mayflower-assets/scss/01-atoms/decorative-link * @requires module:@massds/mayflower-assets/scss/01-atoms/email * @requires module:@massds/mayflower-assets/scss/01-atoms/image * @requires module:@massds/mayflower-assets/scss/01-atoms/event-time * @requires module:@massds/mayflower-assets/scss/01-atoms/phone-number * @requires module:@massds/mayflower-assets/scss/01-atoms/address * @requires module:@massds/mayflower-assets/scss/01-atoms/input-typeahead * @requires module:@massds/mayflower-assets/scss/01-atoms/svg-icons * @requires module:@massds/mayflower-assets/scss/01-atoms/svg-loc-icons */ import React from "react"; import Container from "../GenTeaserContainer/index.mjs"; import Details from "../GenTeaserDetails/index.mjs"; import Image from "../GenTeaserImage/index.mjs"; import Eyebrow from "../GenTeaserEyebrow/index.mjs"; import Button from "../GenTeaserButton/index.mjs"; import Stat from "../GenTeaserStat/index.mjs"; import Title from "../GenTeaserTitle/index.mjs"; import Emphasis from "../GenTeaserEmphasis/index.mjs"; import Date from "../GenTeaserDate/index.mjs"; import Orgs from "../GenTeaserOrgs/index.mjs"; import Description from "../GenTeaserDescription/index.mjs"; import SearchBar from "../GenTeaserSearchBar/index.mjs"; import SubLinks from "../GenTeaserSubLinks/index.mjs"; import KeyAction from "../GenTeaserKeyAction/index.mjs"; import MoreInfo from "../GenTeaserMoreInfo/index.mjs"; import PrimaryInfo from "../GenTeaserPrimaryInfo/index.mjs"; import SecondaryInfo from "../GenTeaserSecondaryInfo/index.mjs"; import Address from "../GenTeaserAddress/index.mjs"; import Phone from "../GenTeaserPhone/index.mjs"; import Email from "../GenTeaserEmail/index.mjs"; import Event from "../GenTeaserEvent/index.mjs"; import InfoDetails from "../GenTeaserInfoDetails/index.mjs"; import Tags from "../GenTeaserTags/index.mjs"; const GenTeaser = props => /*#__PURE__*/React.createElement(Container, props); GenTeaser.propTypes = process.env.NODE_ENV !== "production" ? Container.propTypes : {}; GenTeaser.Details = Details; GenTeaser.Image = Image; GenTeaser.Eyebrow = Eyebrow; GenTeaser.Button = Button; GenTeaser.Stat = Stat; GenTeaser.Title = Title; GenTeaser.Emphasis = Emphasis; GenTeaser.Date = Date; GenTeaser.Orgs = Orgs; GenTeaser.Description = Description; GenTeaser.SearchBar = SearchBar; GenTeaser.SubLinks = SubLinks; GenTeaser.KeyAction = KeyAction; GenTeaser.MoreInfo = MoreInfo; GenTeaser.PrimaryInfo = PrimaryInfo; GenTeaser.SecondaryInfo = SecondaryInfo; GenTeaser.Address = Address; GenTeaser.Phone = Phone; GenTeaser.Email = Email; GenTeaser.Event = Event; GenTeaser.InfoDetails = InfoDetails; GenTeaser.Tags = Tags; export default GenTeaser;