@fluent-windows/core
Version:
React components that inspired by Microsoft's Fluent Design System.
9 lines (8 loc) • 718 B
TypeScript
/// <reference types="react" />
export declare const TableGroup: {
Head: import("react").ForwardRefExoticComponent<Pick<any, string | number | symbol> & import("react").RefAttributes<HTMLTableElement>>;
Body: import("react").ForwardRefExoticComponent<Pick<any, string | number | symbol> & import("react").RefAttributes<HTMLTableElement>>;
Row: import("react").ForwardRefExoticComponent<Pick<any, string | number | symbol> & import("react").RefAttributes<HTMLTableRowElement>>;
Cell: import("react").FunctionComponent<import("./Table.type").TableCellProps>;
Footer: import("react").ForwardRefExoticComponent<Pick<any, string | number | symbol> & import("react").RefAttributes<HTMLTableElement>>;
};