accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
18 lines (16 loc) • 557 B
text/typescript
import {
CardActionsProps,
} from '@material-ui/core/CardActions';
import {
CardHeaderProps,
} from '@material-ui/core/CardHeader';
import {
CardProps,
} from '@material-ui/core/Card';
export interface ICardOwnProps extends CardProps {
readonly actions?: CardActionsProps['children'];
readonly header?: CardHeaderProps['children'];
readonly headerTypographyProps?: CardHeaderProps['titleTypographyProps'];
readonly subheader?: CardHeaderProps['subheader'];
readonly subheaderTypographyProps?: CardHeaderProps['subheaderTypographyProps'];
}