@coreui/react
Version:
UI Components Library for React.js
17 lines (16 loc) • 500 B
TypeScript
import React, { HTMLAttributes } from 'react';
export interface CTabProps extends HTMLAttributes<HTMLButtonElement> {
/**
* A string of all className you want applied to the base component.
*/
className?: string;
/**
* Toggle the disabled state for the component.
*/
disabled?: boolean;
/**
* Item key.
*/
itemKey: number | string;
}
export declare const CTab: React.ForwardRefExoticComponent<CTabProps & React.RefAttributes<HTMLButtonElement>>;