Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/esm/StepIcon/StepIcon.d.ts 1.52 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  import * as React from 'react';
  import { SxProps } from '@mui/system';
  import { SvgIconOwnProps } from "../SvgIcon/index.js";
  import { Theme } from "../styles/index.js";
  import { InternalStandardProps as StandardProps } from "../internal/index.js";
  import { StepIconClasses } from "./stepIconClasses.js";
  export interface StepIconProps
  // TODO v7: extend React.HTMLAttributes<SVGSVGElement> as svg is root component of StepIcon not div
  extends StandardProps<React.HTMLAttributes<HTMLDivElement>, 'color' | 'children'>, Omit<SvgIconOwnProps, 'children'> {
    /**
     * Whether this step is active.
     * @default false
     */
    active?: boolean;
    /**
     * Override or extend the styles applied to the component.
     */
    classes?: Partial<StepIconClasses>;
    /**
     * Mark the step as completed. Is passed to child components.
     * @default false
     */
    completed?: boolean;
    /**
     * If `true`, the step is marked as failed.
     * @default false
     */
    error?: boolean;
    /**
     * The label displayed in the step icon.
     */
    icon: React.ReactNode;
    /**
     * The system prop that allows defining system overrides as well as additional CSS styles.
     */
    sx?: SxProps<Theme>;
  }
  export type StepIconClasskey = keyof NonNullable<StepIconProps['classes']>;
  
  /**
   *
   * Demos:
   *
   * - [Stepper](https://mui.com/material-ui/react-stepper/)
   *
   * API:
   *
   * - [StepIcon API](https://mui.com/material-ui/api/step-icon/)
   * - inherits [SvgIcon API](https://mui.com/material-ui/api/svg-icon/)
   */
  export default function StepIcon(props: StepIconProps): React.JSX.Element;