@material-ui/core
Version:
React components that implement Google's Material Design.
29 lines (25 loc) • 750 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface ExpansionPanelActionsProps
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, ExpansionPanelActionsClassKey> {
/**
* The content of the component.
*/
children?: React.ReactNode;
/**
* If `true`, the actions do not have additional margin.
*/
disableSpacing?: boolean;
}
export type ExpansionPanelActionsClassKey = 'root' | 'spacing';
/**
*
* Demos:
*
* - [Expansion Panels](https://material-ui.com/components/expansion-panels/)
*
* API:
*
* - [ExpansionPanelActions API](https://material-ui.com/api/expansion-panel-actions/)
*/
export default function ExpansionPanelActions(props: ExpansionPanelActionsProps): JSX.Element;