UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

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