ui/components/Navbar/Navbar.d.ts

19 lines
367 B
TypeScript
Raw Normal View History

import React from 'react';
import NavbarItem from './NavbarItem';
interface NavbarLogo {
src?: any;
slogan?: string;
to?: string;
}
interface NavbarItem {
label: string;
href?: string;
to?: string;
}
interface NavbarProps {
logo?: NavbarLogo;
items?: NavbarItem[];
}
declare const Navbar: React.FC<NavbarProps>;
export default Navbar;