UNPKG

@mui/material

Version:

React components that implement Google's Material Design.

6 lines 587 B
import { generateUtilityClass, generateUtilityClasses } from '@mui/base'; export function getLinearProgressUtilityClass(slot) { return generateUtilityClass('MuiLinearProgress', slot); } const linearProgressClasses = generateUtilityClasses('MuiLinearProgress', ['root', 'colorPrimary', 'colorSecondary', 'determinate', 'indeterminate', 'buffer', 'query', 'dashed', 'dashedColorPrimary', 'dashedColorSecondary', 'bar', 'barColorPrimary', 'barColorSecondary', 'bar1Indeterminate', 'bar1Determinate', 'bar1Buffer', 'bar2Indeterminate', 'bar2Buffer']); export default linearProgressClasses;