Skip to content

Commit

Permalink
docs(ui5-icon): update iconmode documentation (#9264)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanaminkova authored Jun 19, 2024
1 parent 94b6b47 commit dd050de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/main/src/types/IconMode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ enum IconMode {

/**
* Decorative mode.
* Configures the component to internally render role="button".
* This mode also supports focus and press handling to enhance interactivity.
* Configures the component to internally render role="presentation" and aria-hidden="true",
* making it purely decorative without semantic content or interactivity.
* @public
*/
Decorative = "Decorative",

/**
* Interactive mode.
* Configures the component to internally render role="presentation" and aria-hidden="true",
* making it purely decorative without semantic content or interactivity.
* Configures the component to internally render role="button".
* This mode also supports focus and press handling to enhance interactivity.
* @public
*/
Interactive = "Interactive",
Expand Down

0 comments on commit dd050de

Please sign in to comment.