@vertisanpro/flowbite-react
Version:
Non-Official React components built for Flowbite and Tailwind CSS
11 lines (10 loc) • 353 B
TypeScript
import type { FC, PropsWithChildren } from 'react';
import type { DeepPartial } from '../../types';
export interface FlowbiteListItemTheme {
base: string;
}
export interface ListItemProps extends PropsWithChildren<unknown> {
theme?: DeepPartial<FlowbiteListItemTheme>;
className?: string;
}
export declare const ListItem: FC<ListItemProps>;