UNPKG

@lunit/oui

Version:

Lunit Oncology UI components

12 lines (11 loc) 303 B
import type { TypographyProps } from '@mui/material'; import type { SxProps } from '@mui/system'; export interface StepperProps { step: number; title: string; disabled?: boolean; sx?: SxProps; } export interface StepperTypographyProps extends TypographyProps { disabled?: boolean; }