UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

70 lines (65 loc) 1.8 kB
import * as React from 'react'; import { SxProps } from '@mui/system'; import { InternalStandardProps as StandardProps } from '..'; import { StepIconProps } from '../StepIcon'; import { Theme } from '../styles'; import { StepLabelClasses } from './stepLabelClasses'; export interface StepLabelProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>> { /** * In most cases will simply be a string containing a title for the label. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: Partial<StepLabelClasses>; /** * The props used for each slot inside. * @default {} */ componentsProps?: { /** * Props applied to the label element. * @default {} */ label?: React.HTMLProps<HTMLSpanElement>; }; /** * If `true`, the step is marked as failed. * @default false */ error?: boolean; /** * Override the default label of the step icon. */ icon?: React.ReactNode; /** * The optional node to display. */ optional?: React.ReactNode; /** * The component to render in place of the [`StepIcon`](/api/step-icon/). */ StepIconComponent?: React.ElementType; /** * Props applied to the [`StepIcon`](/api/step-icon/) element. */ StepIconProps?: Partial<StepIconProps>; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps<Theme>; } export type StepLabelClasskey = keyof NonNullable<StepLabelProps['classes']>; /** * * Demos: * * - [Steppers](https://mui.com/components/steppers/) * * API: * * - [StepLabel API](https://mui.com/api/step-label/) */ declare const StepLabel: ((props: StepLabelProps) => JSX.Element) & { muiName: string }; export default StepLabel;