Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98141027
Card.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
Fri, Jan 10, 05:46
Size
1 KB
Mime Type
text/x-java
Expires
Sun, Jan 12, 05:46 (2 d)
Engine
blob
Format
Raw Data
Handle
23514647
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Card.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { DistributiveOmit } from '@mui/types';
import { OverridableComponent, OverrideProps } from '@mui/material/OverridableComponent';
import { Theme } from '..';
import { PaperProps } from '../Paper';
import { CardClasses } from './cardClasses';
// TODO: v6 remove this interface, it is not used
export interface CardPropsColorOverrides {}
export interface CardTypeMap<P = {}, D extends React.ElementType = 'div'> {
props: P &
DistributiveOmit<PaperProps, 'classes'> & {
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<CardClasses>;
/**
* If `true`, the card will use raised styling.
* @default false
*/
raised?: boolean;
/**
* 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:
*
* - [Card API](https://mui.com/material-ui/api/card/)
* - inherits [Paper API](https://mui.com/material-ui/api/paper/)
*/
declare const Card: OverridableComponent<CardTypeMap>;
export type CardProps<
D extends React.ElementType = CardTypeMap['defaultComponent'],
P = {},
> = OverrideProps<CardTypeMap<P, D>, D>;
export default Card;
Event Timeline
Log In to Comment