Skip to content

Commit 5375601

Browse files
committed
chore: fix icon and iconRight types
1 parent bfc42b4 commit 5375601

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

unraid-ui/src/components/brand/BrandButton.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ export interface BrandButtonProps {
1313
disabled?: boolean;
1414
external?: boolean;
1515
href?: string;
16-
icon?: unknown;
17-
iconRight?: unknown;
16+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
17+
icon?: any;
18+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
19+
iconRight?: any;
1820
iconRightHoverDisplay?: boolean;
1921
text?: string;
2022
title?: string;

0 commit comments

Comments
 (0)