UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 403 B
import { type ComponentProps, type FC, type ReactNode } from "react"; export interface TabItemProps extends Omit<ComponentProps<"div">, "title"> { active?: boolean; disabled?: boolean; icon?: FC<ComponentProps<"svg">>; title: ReactNode; } export declare const TabItem: import("react").ForwardRefExoticComponent<Omit<TabItemProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;