UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

16 lines (15 loc) 455 B
/** * GenTeaserEmphasis module. * @module @massds/mayflower-react/GenTeaserEmphasis * @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser */ import React from 'react'; export interface GenTeaserEmphasisProps { /** React children to render */ children: React.ReactNode; } /** * Emphasis wrapper for Date and Orgs */ declare const GenTeaserEmphasis: (props: GenTeaserEmphasisProps) => any; export default GenTeaserEmphasis;