UNPKG

1.03 kBTypeScriptView Raw
1import * as React from 'react';
2import { SxProps } from '@mui/system';
3import { InternalStandardProps as StandardProps, Theme } from '..';
4import { AccordionActionsClasses } from './accordionActionsClasses';
5
6export interface AccordionActionsProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>> {
7 /**
8 * The content of the component.
9 */
10 children?: React.ReactNode;
11 /**
12 * Override or extend the styles applied to the component.
13 */
14 classes?: Partial<AccordionActionsClasses>;
15 /**
16 * If `true`, the actions do not have additional margin.
17 * @default false
18 */
19 disableSpacing?: boolean;
20 /**
21 * The system prop that allows defining system overrides as well as additional CSS styles.
22 */
23 sx?: SxProps<Theme>;
24}
25
26/**
27 *
28 * Demos:
29 *
30 * - [Accordion](https://mui.com/material-ui/react-accordion/)
31 *
32 * API:
33 *
34 * - [AccordionActions API](https://mui.com/material-ui/api/accordion-actions/)
35 */
36export default function AccordionActions(props: AccordionActionsProps): React.JSX.Element;