@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
16 lines (15 loc) • 422 B
TypeScript
/**
* GenTeaserDetails module.
* @module @massds/mayflower-react/GenTeaserDetails
* @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser
*/
import React from 'react';
export interface GenTeaserDetailsProps {
/** React children to render */
children: React.ReactNode;
}
/**
* Wrapper
*/
declare const GenTeaserDetails: (props: GenTeaserDetailsProps) => any;
export default GenTeaserDetails;