File size: 1,098 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
// @flow
import * as React from "react";
import cn from "classnames";
import Icon from "../Icon";
type Props = {|
+children?: React.Node,
+className?: string,
+RootComponent?: React.ElementType,
+active?: boolean,
+icon?: string,
+to?: string,
+hasSubNav?: boolean,
+rootRef?: (?HTMLElement) => void,
+useExact?: boolean,
|};
function NavLink({
children,
className,
RootComponent,
icon,
active = false,
to,
hasSubNav,
rootRef,
useExact,
}: Props): React.Node {
const classes = cn({ "nav-link": true, active: active }, className);
const childrenForAll = (
<React.Fragment>
{icon && (
<React.Fragment>
<Icon name={icon} />{" "}
</React.Fragment>
)}
{children}
</React.Fragment>
);
return RootComponent ? (
<RootComponent exact={useExact || false} className={classes} to={to}>
{childrenForAll}
</RootComponent>
) : (
<a className={classes} href={to} ref={rootRef}>
{childrenForAll}
</a>
);
}
NavLink.displayName = "Nav.Link";
/** @component */
export default NavLink;
|