UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

26 lines (25 loc) 584 B
/** * Link module. * @module @massds/mayflower-react/Link * @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 LinkProps { href?: string; info?: string; text?: string; icon?: string; classes?: string; children?: React.ReactNode; } declare const Link: { (props: LinkProps): any; defaultProps: { href: string; info: string; text: string; icon: string; }; }; export default Link;