@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
24 lines (23 loc) • 618 B
TypeScript
/**
* GenTeaserKeyAction module.
* @module @massds/mayflower-react/GenTeaserKeyAction
* @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser
*/
import React from 'react';
export interface GenTeaserKeyActionProps {
/** A description of the link */
description?: string;
/** A link */
href?: string;
/** Link text */
text?: string;
/** Link info */
info?: string;
/** React children to render */
children?: React.ReactNode;
}
/**
* Key action
*/
declare const GenTeaserKeyAction: (props: GenTeaserKeyActionProps) => any;
export default GenTeaserKeyAction;