UNPKG

@coreui/react

Version:

UI Components Library for React.js

16 lines (15 loc) 664 B
import React, { ThHTMLAttributes } from 'react'; import type { Colors } from '../../types'; export interface CTableHeaderCellProps extends ThHTMLAttributes<HTMLTableCellElement> { /** * A string of all className you want applied to the component. */ className?: string; /** * Sets the color context of the component to one of CoreUI’s themed colors. * * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string */ color?: Colors; } export declare const CTableHeaderCell: React.ForwardRefExoticComponent<CTableHeaderCellProps & React.RefAttributes<HTMLTableCellElement>>;