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