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"> <
13 lines (12 loc) • 483 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import { DeepPartial } from '..';
import { FlowbiteBoolean } from '../Flowbite/FlowbiteTheme';
export interface FlowbiteNavbarCollapseTheme {
base: string;
list: string;
hidden: FlowbiteBoolean;
}
export interface NavbarCollapseProps extends PropsWithChildren<ComponentProps<'div'>> {
theme?: DeepPartial<FlowbiteNavbarCollapseTheme>;
}
export declare const NavbarCollapse: FC<NavbarCollapseProps>;