flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
9 lines (8 loc) • 432 B
TypeScript
import { type ComponentProps } from "react";
import type { ThemingProps } from "../../types";
export interface SidebarItemGroupTheme {
base: string;
}
export interface SidebarItemGroupProps extends ComponentProps<"ul">, ThemingProps<SidebarItemGroupTheme> {
}
export declare const SidebarItemGroup: import("react").ForwardRefExoticComponent<Omit<SidebarItemGroupProps, "ref"> & import("react").RefAttributes<HTMLUListElement>>;