Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101066069
TableHead.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Feb 5, 09:39
Size
1 KB
Mime Type
text/x-java
Expires
Fri, Feb 7, 09:39 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24087512
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
TableHead.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { Theme } from '..';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
import { TableHeadClasses } from './tableHeadClasses';
export interface TableHeadTypeMap<P = {}, D extends React.ElementType = 'thead'> {
props: P & {
/**
* The content of the component, normally `TableRow`.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<TableHeadClasses>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
};
defaultComponent: D;
}
/**
*
* Demos:
*
* - [Table](https://mui.com/material-ui/react-table/)
*
* API:
*
* - [TableHead API](https://mui.com/material-ui/api/table-head/)
*/
declare const TableHead: OverridableComponent<TableHeadTypeMap>;
export type TableHeadProps<
D extends React.ElementType = TableHeadTypeMap['defaultComponent'],
P = {},
> = OverrideProps<TableHeadTypeMap<P, D>, D>;
export default TableHead;
Event Timeline
Log In to Comment