UNPKG

@naturacosmeticos/natds-web

Version:

A collection of components from Natura Design System for React websites and webapps

26 lines (25 loc) 632 B
import { CardActionsProps } from '@material-ui/core/CardActions'; export interface ICardActionsProps extends CardActionsProps { /** * The content of the component. * * @optional * @type node */ children?: CardActionsProps['children']; /** * Override or extend the styles applied to the component. * * @optional * @type object */ classes?: CardActionsProps['classes']; /** * If true, the actions do not have additional margin. * * @default false * @optional * @type bool */ disableSpacing?: CardActionsProps['disableSpacing']; }