samagra-chatui
Version:
The React library for Chatbot UI
11 lines (10 loc) • 316 B
TypeScript
import React from 'react';
import { IconButtonProps } from '../IconButton';
export interface NavbarProps {
title: string;
className?: string;
logo?: string;
leftContent?: IconButtonProps;
rightContent?: IconButtonProps[];
}
export declare const Navbar: (props: NavbarProps) => React.JSX.Element;