@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
22 lines (21 loc) • 782 B
TypeScript
/**
* GenTeaserOrgs module.
* @module @massds/mayflower-react/GenTeaserOrgs
* @requires module:@massds/mayflower-assets/scss/01-atoms/button-with-icon
* @requires module:@massds/mayflower-assets/scss/01-atoms/button-search
* @requires module:@massds/mayflower-assets/scss/01-atoms/svg-icons
* @requires module:@massds/mayflower-assets/scss/01-atoms/svg-loc-icons
*/
import React from 'react';
export interface GenTeaserOrgsProps {
/** A comma seperate list of organizations. */
orgs: string;
}
declare class GenTeaserOrgs extends React.Component<GenTeaserOrgsProps> {
constructor(props: any);
UNSAFE_componentWillReceiveProps(nextProps: any): void;
handleClick(): void;
handleKeyPress(e: any): void;
render(): any;
}
export default GenTeaserOrgs;