flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
12 lines (11 loc) • 502 B
TypeScript
import { type ComponentProps, type FC } from "react";
import type { ThemingProps } from "../../types";
export interface NavbarToggleThem {
base: string;
icon: string;
title: string;
}
export interface NavbarToggleProps extends ComponentProps<"button">, ThemingProps<NavbarToggleThem> {
barIcon?: FC<ComponentProps<"svg">>;
}
export declare const NavbarToggle: import("react").ForwardRefExoticComponent<Omit<NavbarToggleProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;