@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
21 lines (20 loc) • 622 B
TypeScript
/**
* GenTeaserTitle module.
* @module @massds/mayflower-react/GenTeaserTitle
* @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser
*/
import React from 'react';
import { DecorativeLinkProps } from '../DecorativeLink';
export interface GenTeaserTitleProps {
/** The heading level of the title */
level?: string | number;
/** The title object (text, info, href) */
title?: DecorativeLinkProps;
/** React children to render */
children?: React.ReactNode;
}
/**
* Title Link
*/
declare const GenTeaserTitle: (props: GenTeaserTitleProps) => any;
export default GenTeaserTitle;