@amsterdam/design-system-react
Version:
All React components from the Amsterdam Design System. Use it to compose pages in your website or application.
32 lines (31 loc) • 2.08 kB
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { PropsWithChildren, TableHTMLAttributes } from 'react';
export type TableProps = PropsWithChildren<TableHTMLAttributes<HTMLTableElement>>;
export declare const Table: import("react").ForwardRefExoticComponent<TableHTMLAttributes<HTMLTableElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLTableElement>> & {
Body: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLTableSectionElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLTableSectionElement>>;
Caption: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLTableCaptionElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLTableCaptionElement>>;
Cell: import("react").ForwardRefExoticComponent<import("react").TdHTMLAttributes<HTMLTableCellElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLTableCellElement>>;
Footer: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLTableSectionElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLTableSectionElement>>;
Header: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLTableSectionElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLTableSectionElement>>;
HeaderCell: import("react").ForwardRefExoticComponent<import("react").ThHTMLAttributes<HTMLTableCellElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLTableCellElement>>;
Row: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLTableRowElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLTableRowElement>>;
};