UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

12 lines (11 loc) 446 B
import type { ComponentProps, ElementType, FC, PropsWithChildren } from 'react'; import type { DeepPartial } from '../../'; export interface FlowbiteNavbarBrandTheme { base: string; } export interface NavbarBrandProps extends PropsWithChildren, ComponentProps<'a'>, Record<string, unknown> { as?: ElementType; href?: string; theme?: DeepPartial<FlowbiteNavbarBrandTheme>; } export declare const NavbarBrand: FC<NavbarBrandProps>;