UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

18 lines (16 loc) 557 B
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']; }