hoda-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"> <
9 lines (8 loc) • 331 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren, ReactNode } from 'react';
export interface TabItemProps extends PropsWithChildren<Omit<ComponentProps<'div'>, 'title'>> {
title: ReactNode;
active?: boolean;
disabled?: boolean;
icon?: FC<ComponentProps<'svg'>>;
}
export declare const TabItem: FC<TabItemProps>;