UNPKG

@useloops/design-system

Version:

The official React based Loops design system

13 lines (10 loc) 451 B
import { CircularProgressProps } from '@mui/material'; import { FunctionComponent } from 'react'; import { GenericSizeMap } from '../../BrandCore/primitiveVariables.js'; type ProgressSizing = Exclude<GenericSizeMap, 'none'>; interface ProgressProps extends CircularProgressProps { sizing?: ProgressSizing; } declare const Progress: FunctionComponent<ProgressProps>; export { Progress as default }; export type { ProgressProps, ProgressSizing };