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