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"> <
12 lines (11 loc) • 389 B
TypeScript
import type { ComponentProps, FC } from 'react';
import { DeepPartial } from '..';
export interface FlowbiteNavbarToggleTheme {
base: string;
icon: string;
}
export interface NavbarToggleProps extends ComponentProps<'button'> {
barIcon?: FC<ComponentProps<'svg'>>;
theme?: DeepPartial<FlowbiteNavbarToggleTheme>;
}
export declare const NavbarToggle: FC<NavbarToggleProps>;