mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
9 lines (8 loc) • 331 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren, ReactNode } from 'react';
export interface TabItemProps extends PropsWithChildren, Omit<ComponentProps<'div'>, 'title'> {
active?: boolean;
disabled?: boolean;
icon?: FC<ComponentProps<'svg'>>;
title: ReactNode;
}
export declare const TabItem: FC<TabItemProps>;