/* 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 ( <>
{children || }
); }; CProgress.propTypes = { children: PropTypes.node, className: PropTypes.oneOfType([ PropTypes.string, PropTypes.array, PropTypes.object, ]), // innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.func]), size: PropTypes.string, value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), max: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), animated: PropTypes.bool, striped: PropTypes.bool, color: PropTypes.string, precision: PropTypes.number, showPercentage: PropTypes.bool, showValue: PropTypes.bool, style: PropTypes.object, }; CProgress.defaultProps = { value: 0, max: 100, precision: 0, }; export default CProgress;