Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/DialogActions/DialogActions.d.ts 1.03 KB
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  import * as React from 'react';
  import { SxProps } from '@mui/system';
  import { Theme } from "../styles/index.js";
  import { InternalStandardProps as StandardProps } from "../internal/index.js";
  import { DialogActionsClasses } from "./dialogActionsClasses.js";
  export interface DialogActionsProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>> {
    /**
     * The content of the component.
     */
    children?: React.ReactNode;
    /**
     * Override or extend the styles applied to the component.
     */
    classes?: Partial<DialogActionsClasses>;
    /**
     * The system prop that allows defining system overrides as well as additional CSS styles.
     */
    sx?: SxProps<Theme>;
    /**
     * If `true`, the actions do not have additional margin.
     * @default false
     */
    disableSpacing?: boolean;
  }
  
  /**
   *
   * Demos:
   *
   * - [Dialog](https://mui.com/material-ui/react-dialog/)
   *
   * API:
   *
   * - [DialogActions API](https://mui.com/material-ui/api/dialog-actions/)
   */
  export default function DialogActions(props: DialogActionsProps): React.JSX.Element;