flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
10 lines (9 loc) • 360 B
TypeScript
import type { ComponentProps, FC } from "react";
import type { DeepPartial } from "../../types";
export interface FlowbiteSidebarItemGroupTheme {
base: string;
}
export interface SidebarItemGroupProps extends ComponentProps<"ul"> {
theme?: DeepPartial<FlowbiteSidebarItemGroupTheme>;
}
export declare const SidebarItemGroup: FC<SidebarItemGroupProps>;