Skip to content

Commit

Permalink
Refactor #4359 - Confirmpopup d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
habubey committed May 11, 2023
1 parent 762d532 commit 23cc7ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -9783,7 +9783,7 @@
"name": "icon",
"optional": true,
"readonly": false,
"type": "ConfirmPopupPassThroughType<HTMLAttributes<HTMLSpanElement> | SVGProps<SVGSVGElement>>",
"type": "ConfirmPopupPassThroughType<SVGProps<SVGSVGElement> | HTMLAttributes<SVGSVGElement | HTMLSpanElement>>",
"description": "Uses to pass attributes to the icon's DOM element."
},
{
Expand Down
2 changes: 1 addition & 1 deletion components/lib/confirmpopup/confirmpopup.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export interface ConfirmPopupPassThroughOptions {
/**
* Uses to pass attributes to the icon's DOM element.
*/
icon?: ConfirmPopupPassThroughType<React.SVGProps<SVGSVGElement> | React.HTMLAttributes<HTMLSpanElement>>;
icon?: ConfirmPopupPassThroughType<React.SVGProps<SVGSVGElement> | React.HTMLAttributes<HTMLSpanElement | SVGSVGElement>>;
/**
* Uses to pass attributes to the message's DOM element.
*/
Expand Down

0 comments on commit 23cc7ea

Please sign in to comment.