Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100912922
CardContent.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
Mon, Feb 3, 21:37
Size
1 KB
Mime Type
text/x-java
Expires
Wed, Feb 5, 21:37 (2 d)
Engine
blob
Format
Raw Data
Handle
24054975
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
CardContent.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
import { Theme } from '..';
import { CardContentClasses } from './cardContentClasses';
export interface CardContentTypeMap<P = {}, D extends React.ElementType = 'div'> {
props: P & {
/**
* The content of the component.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<CardContentClasses>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
};
defaultComponent: D;
}
/**
*
* Demos:
*
* - [Card](https://mui.com/material-ui/react-card/)
*
* API:
*
* - [CardContent API](https://mui.com/material-ui/api/card-content/)
*/
declare const CardContent: OverridableComponent<CardContentTypeMap>;
export type CardContentProps<
D extends React.ElementType = CardContentTypeMap['defaultComponent'],
P = {},
> = OverrideProps<CardContentTypeMap<P, D>, D>;
export default CardContent;
Event Timeline
Log In to Comment