UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 341 B
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>;