Skip to content

Commit

Permalink
fix(VNumberInput): use built-in icon aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwu9145 committed Mar 20, 2024
1 parent c1af26a commit 34d4712
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/vuetify/src/labs/VNumberInput/VNumberInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
flat
key="decrement-btn"
height={ defaultHeight }
icon="mdi-chevron-down"
icon="$expand"
rounded="0"
size="small"
onClick={ onClickDown }
Expand All @@ -152,7 +152,7 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
rounded: '0',
height: defaultHeight,
size: 'small',
icon: 'mdi-chevron-down',
icon: '$expand',
},
}}
>
Expand All @@ -171,7 +171,7 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
flat
key="increment-btn"
height={ defaultHeight }
icon="mdi-chevron-up"
icon="$collapse"
onClick={ onClickUp }
rounded="0"
size="small"
Expand All @@ -185,7 +185,7 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
height: defaultHeight,
rounded: '0',
size: 'small',
icon: 'mdi-chevron-up',
icon: '$collapse',
},
}}
>
Expand Down Expand Up @@ -253,7 +253,7 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
<VBtn
flat
height="100%"
icon="mdi-plus"
icon="$plus"
tile
onClick={ onClickUp }
/>
Expand All @@ -266,7 +266,7 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
<VBtn
flat
height="100%"
icon="mdi-minus"
icon="$minus"
tile
onClick={ onClickDown }
/>
Expand Down

0 comments on commit 34d4712

Please sign in to comment.