@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
28 lines (27 loc) • 613 B
TypeScript
export interface ArrowNavProps {
/** Top label information */
label: string;
/** Title */
title: string;
/** Link information */
info?: string;
/** Arrow Direction */
direction?: "left" | "right";
/** Link href */
href?: string;
/** Function */
onClick?(...args: unknown[]): unknown;
/** Bottom Link text */
text?: string;
}
declare const ArrowNav: {
(props: ArrowNavProps): any;
defaultProps: {
info: string;
href: string;
onClick: string;
text: string;
direction: string;
};
};
export default ArrowNav;