UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 406 B
import { type ComponentProps } from "react"; import type { ThemingProps } from "../../types"; export interface DrawerItemsTheme { base: string; } export interface DrawerItemsProps extends ComponentProps<"div">, ThemingProps<DrawerItemsTheme> { } export declare const DrawerItems: import("react").ForwardRefExoticComponent<Omit<DrawerItemsProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;