UNPKG

914 BTypeScriptView Raw
1import * as React from 'react';
2import { StandardProps } from '..';
3
4export interface ExpansionPanelActionsProps
5 extends StandardProps<React.HTMLAttributes<HTMLDivElement>, ExpansionPanelActionsClassKey> {
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 ExpansionPanelActionsClassKey = 'root' | 'spacing';
17
18/**
19 * ⚠️ The ExpansionPanelActions component was renamed to AccordionActions to use a more common naming convention.
20 *
21 * You should use `import { AccordionActions } from '@material-ui/core'`
22 * or `import AccordionActions from '@material-ui/core/AccordionActions'`.
23 * API:
24 *
25 * - [ExpansionPanelActions API](https://mui.com/api/expansion-panel-actions/)
26 */
27export default function ExpansionPanelActions(props: ExpansionPanelActionsProps): JSX.Element;