UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 293 B
import type { ComponentProps, FC, 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: FC<TabItemProps>;