cdbreact
Version:
Elegant UI kit and reusable components for building mobile-first, responsive websites and web apps
17 lines (16 loc) • 422 B
TypeScript
import React from 'react';
import PropTypes from 'prop-types';
interface Props {
className?: string;
href?: string;
children?: React.ReactNode;
}
declare const NavBrand: {
(props: Props): React.JSX.Element;
propTypes: {
className: PropTypes.Requireable<string>;
href: PropTypes.Requireable<string>;
};
};
export default NavBrand;
export { NavBrand as CDBNavBrand };