UNPKG

@transkripid/flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS - Transkrip.id fork

11 lines (10 loc) 344 B
import type { FC, PropsWithChildren } from 'react'; import type { DeepPartial } from '../../types'; export interface FlowbiteListItemTheme { base: string; } export interface ListItemProps extends PropsWithChildren { theme?: DeepPartial<FlowbiteListItemTheme>; className?: string; } export declare const ListItem: FC<ListItemProps>;