UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

16 lines (15 loc) 479 B
/** * GenTeaserSubLinks module. * @module @massds/mayflower-react/GenTeaserSubLinks * @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser */ import React from 'react'; export interface GenTeaserSubLinksProps { /** React children to render */ children: React.ReactNode; } /** * SubLinks wrapper for formatting key actions into 2 columns */ declare const GenTeaserSubLinks: (props: GenTeaserSubLinksProps) => any; export default GenTeaserSubLinks;