UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

15 lines (14 loc) 506 B
/** * GenTeaserDescription module. * @module @massds/mayflower-react/GenTeaserDescription * @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser */ import React from 'react'; export interface GenTeaserDescriptionProps { /** A html formatted or plain string of text */ description?: string; /** React children to render */ children?: React.ReactNode; } declare const GenTeaserDescription: (props: GenTeaserDescriptionProps) => any; export default GenTeaserDescription;