hoda-react
Version:
<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <
16 lines (15 loc) • 539 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import { DeepPartial } from '..';
import { FlowbiteBoolean } from '../Flowbite/FlowbiteTheme';
export interface FlowbiteNavbarLinkTheme {
base: string;
active: FlowbiteBoolean;
disabled: FlowbiteBoolean;
}
export interface NavbarLinkProps extends PropsWithChildren<ComponentProps<'a'>> {
active?: boolean;
disabled?: boolean;
href?: string;
theme?: DeepPartial<FlowbiteNavbarLinkTheme>;
}
export declare const NavbarLink: FC<NavbarLinkProps>;