@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
18 lines (17 loc) • 498 B
TypeScript
/**
* GenTeaserDate module.
* @module @massds/mayflower-react/GenTeaserDate
* @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser
*/
import React from 'react';
export interface GenTeaserDateProps {
/** Either a formatted date or a formatted date with a label */
date?: string | number;
/** React children to render */
children?: React.ReactNode;
}
/**
* Date
*/
declare const GenTeaserDate: (props: GenTeaserDateProps) => any;
export default GenTeaserDate;