UNPKG

cdbreact

Version:

Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps

25 lines (24 loc) 714 B
import React from 'react'; import PropTypes from 'prop-types'; interface Props { children?: React.ReactNode; className?: string; left?: boolean; right?: boolean; tag?: [string, Function]; } declare const NavbarNav: { (props: Props): JSX.Element; propTypes: { children: PropTypes.Requireable<PropTypes.ReactNodeLike>; className: PropTypes.Requireable<string>; left: PropTypes.Requireable<boolean>; right: PropTypes.Requireable<boolean>; tag: PropTypes.Requireable<string | ((...args: any[]) => any)>; }; defaultProps: { tag: string; }; }; export default NavbarNav; export { NavbarNav as CDBNavbarNav };