Skip to content

Commit b7ae918

Browse files
committed
fix: use the new cdsIcon directive for rendering icon
Signed-off-by: Akshat Patel <[email protected]>
1 parent 2314921 commit b7ae918

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/input/label.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ import { TextInput } from "./input.directive";
9393
#wrapper>
9494
<svg
9595
*ngIf="!warn && invalid"
96-
ibmIcon="warning--filled"
96+
cdsIcon="warning--filled"
9797
size="16"
9898
class="cds--text-input__invalid-icon">
9999
</svg>
100100
<svg
101101
*ngIf="!invalid && warn"
102-
ibmIcon="warning--alt--filled"
102+
cdsIcon="warning--alt--filled"
103103
size="16"
104104
class="cds--text-input__invalid-icon cds--text-input__invalid-icon--warning">
105105
</svg>

src/input/text-input-label.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ import {
3434
#wrapper>
3535
<svg
3636
*ngIf="!warn && invalid"
37-
ibmIcon="warning--filled"
37+
cdsIcon="warning--filled"
3838
size="16"
3939
class="cds--text-input__invalid-icon">
4040
</svg>
4141
<svg
4242
*ngIf="!invalid && warn"
43-
ibmIcon="warning--alt--filled"
43+
cdsIcon="warning--alt--filled"
4444
size="16"
4545
class="cds--text-input__invalid-icon cds--text-input__invalid-icon--warning">
4646
</svg>

0 commit comments

Comments
 (0)