import React from 'react';
import Progress from './progress';
import warning from 'warning';
const AntProgress = Progress;
// For downward compatibility
AntProgress.Line = (props) => {
warning(false, ' is deprecated, use instead.');
return ;
};
AntProgress.Circle = (props) => {
warning(false, ' is deprecated, use instead.');
return ;
};
export default AntProgress;