我知道如何更改背景和进度的颜色。我想在填充之前更改进度路径的颜色
export const CircleProgress = withStyles(() => ({
root: {
width: '262px !important',
height: '262px !important',
transform: 'rotate(220deg) !important',
color: 'blue',
},
}))(CircularProgress);
Run Code Online (Sandbox Code Playgroud)
如何更改轨迹颜色
<Pagination
count={pageCount}
color="primary"
onChange={() => props.onPageChange()}
/>
Run Code Online (Sandbox Code Playgroud)
我正在尝试将当前页码发送到 onChange。