Skip to content

Commit

Permalink
fix(progress): icon 颜色错误
Browse files Browse the repository at this point in the history
  • Loading branch information
yang1206 committed Nov 8, 2023
1 parent 5e56649 commit 18662d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/src/pages/demo/exhibition/progress/index.vue
Expand Up @@ -112,7 +112,7 @@ export default {
status="icon"
>
<template #iconName>
<nut-icon name="issue" color="red" width="15px" height="15px" />
<nut-icon name="issue" custom-color="red" width="15px" height="15px" />
</template>
</nut-progress>
</nut-cell>
Expand Down
2 changes: 1 addition & 1 deletion packages/nutui/components/progress/progress.vue
Expand Up @@ -81,7 +81,7 @@ export default defineComponent({
</template>
<template v-else-if="status === 'icon'">
<slot name="iconName">
<NutIcon name="checked" width="15px" height="15px" color="#439422" />
<NutIcon name="checked" width="15px" height="15px" custom-color="#439422" />
</slot>
</template>
</div>
Expand Down

0 comments on commit 18662d5

Please sign in to comment.