@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
16 lines (15 loc) • 457 B
TypeScript
/**
* GenTeaserStat module.
* @module @massds/mayflower-react/GenTeaserStat
* @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser
*/
import React from 'react';
export interface GenTeaserStatProps {
/** Expects to receive children directly (e.g. `<span><b>103 item</b></span>`). */
children: React.ReactNode;
}
/**
* Stat info
*/
declare const GenTeaserStat: (props: GenTeaserStatProps) => any;
export default GenTeaserStat;