cdbreact
Version:
Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps
17 lines (16 loc) • 416 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): JSX.Element;
propTypes: {
className: PropTypes.Requireable<string>;
href: PropTypes.Requireable<string>;
};
};
export default NavBrand;
export { NavBrand as CDBNavBrand };