Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99715579
ImageListItem.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
Sun, Jan 26, 07:20
Size
1 KB
Mime Type
text/x-java
Expires
Tue, Jan 28, 07:20 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23811985
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
ImageListItem.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { Theme } from '..';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
import { ImageListItemClasses } from './imageListItemClasses';
export interface ImageListItemTypeMap<P = {}, D extends React.ElementType = 'li'> {
props: P & {
/**
* The content of the component, normally an `<img>`.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<ImageListItemClasses>;
/**
* Width of the item in number of grid columns.
* @default 1
*/
cols?: number;
/**
* Height of the item in number of grid rows.
* @default 1
*/
rows?: number;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
};
defaultComponent: D;
}
/**
*
* Demos:
*
* - [Image List](https://mui.com/material-ui/react-image-list/)
*
* API:
*
* - [ImageListItem API](https://mui.com/material-ui/api/image-list-item/)
*/
declare const ImageListItem: OverridableComponent<ImageListItemTypeMap>;
export type ImageListItemProps<
D extends React.ElementType = ImageListItemTypeMap['defaultComponent'],
P = {},
> = OverrideProps<ImageListItemTypeMap<P, D>, D>;
export default ImageListItem;
Event Timeline
Log In to Comment