@amsterdam/design-system-react
Version:
All React components from the Amsterdam Design System. Use it to compose pages in your website or application.
10 lines (9 loc) • 457 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { PropsWithChildren, ThHTMLAttributes } from 'react';
export type TableHeaderCellProps = PropsWithChildren<ThHTMLAttributes<HTMLTableCellElement>>;
export declare const TableHeaderCell: import("react").ForwardRefExoticComponent<ThHTMLAttributes<HTMLTableCellElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLTableCellElement>>;