Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101017451
ImageListItemBar.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
Tue, Feb 4, 20:46
Size
1 KB
Mime Type
text/x-java
Expires
Thu, Feb 6, 20:46 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24076951
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
ImageListItemBar.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { InternalStandardProps as StandardProps, Theme } from '..';
import { ImageListItemBarClasses } from './imageListItemBarClasses';
export interface ImageListItemBarProps
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, 'title'> {
/**
* An IconButton element to be used as secondary action target
* (primary action target is the item itself).
*/
actionIcon?: React.ReactNode;
/**
* Position of secondary action IconButton.
* @default 'right'
*/
actionPosition?: 'left' | 'right';
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<ImageListItemBarClasses>;
/**
* Position of the title bar.
* @default 'bottom'
*/
position?: 'below' | 'top' | 'bottom';
/**
* String or element serving as subtitle (support text).
*/
subtitle?: React.ReactNode;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
/**
* Title to be displayed.
*/
title?: React.ReactNode;
}
/**
*
* Demos:
*
* - [Image List](https://mui.com/material-ui/react-image-list/)
*
* API:
*
* - [ImageListItemBar API](https://mui.com/material-ui/api/image-list-item-bar/)
*/
export default function ImageListItemBar(props: ImageListItemBarProps): JSX.Element;
Event Timeline
Log In to Comment