UNPKG

@wulperstudio/cms

Version:
8 lines (7 loc) 251 B
import { BoxProps, CircularProgressProps } from '@mui/material'; import { ReactNode } from 'react'; export interface CircularProgressWithLabelModel extends CircularProgressProps { value: number; children: ReactNode; boxProps?: BoxProps; }