bootstrap-4-react
Version:
Bootstrap 4 React components
20 lines (15 loc) • 641 B
JSX
import React, { Component } from 'react';
import { JS } from 'fsts';
import { mergeClassName, withClassName } from '../../utilities';
import { BA } from '../dom';
class NavLink extends Component {
render() {
const { dropdownToggle } = this.props;
const cn = mergeClassName(this.props, dropdownToggle? 'dropdown-toggle' : '');
const p = JS.lessProps(this.props, ['className', 'dropdownToggle']);
return dropdownToggle
? <BA {...p} className={cn} data-toggle='dropdown'>{this.props.children}</BA>
: <BA {...p} className={cn}>{this.props.children}</BA>
}
}
export default withClassName('nav-link')(NavLink);