You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
982 B
33 lines
982 B
import classNames from 'classnames';
|
|
import * as React from 'react';
|
|
import Anchor from '@restart/ui/Anchor';
|
|
import { useNavItem } from '@restart/ui/NavItem';
|
|
import { makeEventKey } from '@restart/ui/SelectableContext';
|
|
import { useBootstrapPrefix } from './ThemeProvider';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
const defaultProps = {
|
|
disabled: false
|
|
};
|
|
const NavLink = /*#__PURE__*/React.forwardRef(({
|
|
bsPrefix,
|
|
className,
|
|
as: Component = Anchor,
|
|
active,
|
|
eventKey,
|
|
...props
|
|
}, ref) => {
|
|
bsPrefix = useBootstrapPrefix(bsPrefix, 'nav-link');
|
|
const [navItemProps, meta] = useNavItem({
|
|
key: makeEventKey(eventKey, props.href),
|
|
active,
|
|
...props
|
|
});
|
|
return /*#__PURE__*/_jsx(Component, { ...props,
|
|
...navItemProps,
|
|
ref: ref,
|
|
className: classNames(className, bsPrefix, props.disabled && 'disabled', meta.isActive && 'active')
|
|
});
|
|
});
|
|
NavLink.displayName = 'NavLink';
|
|
NavLink.defaultProps = defaultProps;
|
|
export default NavLink; |