@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
14 lines (13 loc) • 397 B
TypeScript
export interface GenTeaserInfoDetailsProps {
/** The text information related to the details */
text: string;
/** The icon to render in the text, defaults to laptop icon. */
icon?: string;
/** A link for the text */
href?: string;
}
/**
* Info details
*/
declare const GenTeaserInfoDetails: (props: GenTeaserInfoDetailsProps) => any;
export default GenTeaserInfoDetails;