Commit 943945766f8497ce4f05d139e6627aacf793bc88

Authored by 梁灏
1 parent 207d6b07

update ColorPicker Icons

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/components/color-picker/color-picker.vue
... ... @@ -25,7 +25,7 @@
25 25 <div
26 26 v-show="value === '' && !visible"
27 27 :class="[prefixCls + '-color-empty']">
28   - <i :class="[iconPrefixCls, iconPrefixCls + '-ios-close-empty']"></i>
  28 + <i :class="[iconPrefixCls, iconPrefixCls + '-ios-close']"></i>
29 29 </div>
30 30 <div
31 31 v-show="value || visible"
... ... @@ -248,7 +248,7 @@ export default {
248 248 arrowClasses() {
249 249 return [
250 250 this.iconPrefixCls,
251   - `${this.iconPrefixCls}-arrow-down-b`,
  251 + `${this.iconPrefixCls}-ios-arrow-down`,
252 252 `${this.inputPrefixCls}-icon`,
253 253 `${this.inputPrefixCls}-icon-normal`,
254 254 ];
... ...