@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
14 lines (13 loc) • 396 B
TypeScript
export interface GenTeaserAddressProps {
/** A string or html formatted string of the address */
address?: string;
/** A link to directions to the address */
directionLink?: string;
/** Any details related to the phone number */
details?: string;
}
/**
* Address
*/
declare const GenTeaserAddress: (props: GenTeaserAddressProps) => any;
export default GenTeaserAddress;