UNPKG

641 BTypeScriptView Raw
1import * as React from 'react';
2import { StandardProps } from '..';
3
4export interface CardActionsProps
5 extends StandardProps<React.HTMLAttributes<HTMLDivElement>, CardActionsClassKey> {
6 /**
7 * The content of the component.
8 */
9 children?: React.ReactNode;
10 /**
11 * If `true`, the actions do not have additional margin.
12 */
13 disableSpacing?: boolean;
14}
15
16export type CardActionsClassKey = 'root' | 'spacing';
17
18/**
19 *
20 * Demos:
21 *
22 * - [Cards](https://mui.com/components/cards/)
23 *
24 * API:
25 *
26 * - [CardActions API](https://mui.com/api/card-actions/)
27 */
28export default function CardActions(props: CardActionsProps): JSX.Element;