@mui/material
Version:
Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.
51 lines (44 loc) • 1.33 kB
TypeScript
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';
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:
*
* - [Cards](https://mui.com/components/cards/)
*
* API:
*
* - [Card API](https://mui.com/api/card/)
* - inherits [Paper API](https://mui.com/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;