/* eslint-disable react/forbid-prop-types */ /* eslint-disable react/require-default-props */ /* eslint-disable import/no-cycle */ /* eslint-disable @typescript-eslint/no-explicit-any */ import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; import CProgressBar from './CProgressBar'; export const Context = React.createContext({}); // component - CoreUI / CProgress const CProgress = (props: any) => { const { children, className, // innerRef, size, color, striped, animated, precision, showPercentage, showValue, max, value, ...attributes } = props; const inheritedProps = { color, striped, animated, precision, showPercentage, showValue, max, value, }; const progressClasses = classNames( 'progress', size && `progress-${size}`, className ); // render return ( <>