@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
16 lines (15 loc) • 460 B
TypeScript
import { ParagraphProps } from '../Paragraph';
import { DecorativeLinkProps } from '../DecorativeLink';
export interface UtilityPanelProps {
/** Text describing the contents of the panel */
description: ParagraphProps;
/** Links to display in the panel */
links?: DecorativeLinkProps[];
}
declare const UtilityPanel: {
(utilityPanel: UtilityPanelProps): any;
defaultProps: {
links: any[];
};
};
export default UtilityPanel;