antd中如何增加progress组件的高度

How to increase the height of progress component in antd

我已经尝试 height:'50px' in style prop 增加了容器的高度,但没有增加进度条。

我尝试按照下面的方式定位基础 类,但效果不佳。

.ant-progress-line .ant-progress-outer .ant-progress-inner div.ant-progress-bg {
  height: 50px;
}

如何实现预期的行为?

这应该可以正常工作:

.ant-progress-bg {
    height: 20px !important;
}