@olleemilsson/flowbite-react
Version:
<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <
16 lines (15 loc) • 515 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import { FlowbiteBoolean } from '../Flowbite/FlowbiteTheme';
export interface FlowbiteListGroupTheme {
base: string;
item: {
active: FlowbiteBoolean;
base: string;
href: FlowbiteBoolean;
icon: string;
};
}
export declare type ListGroupProps = PropsWithChildren<ComponentProps<'div'>>;
export declare const ListGroup: FC<ListGroupProps> & {
Item: FC<import("./ListGroupItem").ListGroupItemProps>;
};