@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
28 lines (27 loc) • 773 B
TypeScript
/**
* DecorativeLink module.
* @module @massds/mayflower-react/DecorativeLink
* @requires module:@massds/mayflower-assets/scss/01-atoms/decorative-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 DecorativeLinkProps {
href?: string;
info?: string;
text?: string;
showFileIcon?: boolean;
className?: string;
details?: string;
icon?: React.ReactElement;
fileIcon?: React.ReactElement;
}
declare const DecorativeLink: {
(props: DecorativeLinkProps): any;
defaultProps: {
href: string;
text: string;
showFileIcon: boolean;
};
};
export default DecorativeLink;