@material-ui/core
Version:
React components that implement Google's Material Design.
26 lines (22 loc) • 550 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
import { PaperProps } from '../Paper';
export interface CardProps extends StandardProps<PaperProps, CardClassKey> {
/**
* If `true`, the card will use raised styling.
*/
raised?: boolean;
}
export type CardClassKey = 'root';
/**
*
* Demos:
*
* - [Cards](https://mui.com/components/cards/)
*
* API:
*
* - [Card API](https://mui.com/api/card/)
* - inherits [Paper API](https://mui.com/api/paper/)
*/
export default function Card(props: CardProps): JSX.Element;