@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
11 lines (10 loc) • 327 B
TypeScript
import { ButtonWithIconProps } from '../ButtonWithIcon';
export interface GenTeaserButtonProps {
/** Expects props from ButtonWithIcon (e.g. text, info, etc.) */
button: ButtonWithIconProps;
}
/**
* Expand Button
*/
declare const GenTeaserButton: (props: GenTeaserButtonProps) => any;
export default GenTeaserButton;