UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

18 lines (17 loc) 791 B
import type { ComponentProps, FC } from 'react'; import React from 'react'; import type { DeepPartial } from '../../types'; import type { FlowbiteListGroupItemTheme } from './ListGroupItem'; export interface FlowbiteListGroupTheme { root: FlowbiteListGroupRootTheme; item: FlowbiteListGroupItemTheme; } export interface FlowbiteListGroupRootTheme { base: string; } export interface ListGroupProps extends ComponentProps<'ul'> { theme?: DeepPartial<FlowbiteListGroupTheme>; } export declare const ListGroup: FC<ListGroupProps> & { Item: FC<import("./ListGroupItem").ListGroupItemProps & React.ClassAttributes<HTMLAnchorElement> & React.AnchorHTMLAttributes<HTMLAnchorElement> & React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement>>; };