/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/mui-material/src/StepLabel/StepLabel.spec.tsx
24 строки
391 B
Siriwat K
[material-ui] Fix slots typing for Tooltip and StepLabel (#44985)
13 янв 2025, 05:28
Не верифицирован
13 янв 2025, 05:28
75e9bf5
Код
Авторство
О чём код?
import * as React from 'react'; import StepLabel from '@mui/material/StepLabel'; const SlotComponentRef = React.forwardRef<HTMLDivElement>((props, ref) => { return <div />; }); <StepLabel slots={{ label: 'span', stepIcon: 'div', }} > Step One </StepLabel>; <StepLabel slots={{ label: SlotComponentRef, stepIcon: SlotComponentRef, }} > Step One </StepLabel>;