File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import litRender from "@ui5/webcomponents-base/src/renderer/LitRenderer.js";
3
3
import Bootstrap from "@ui5/webcomponents-base/src/Bootstrap.js" ;
4
4
import { isSpace , isEnter } from "@ui5/webcomponents-base/src/events/PseudoEvents.js" ;
5
5
import { getIconInfo } from "@ui5/webcomponents-base/src/IconPool.js" ;
6
- import { getRTL } from "@ui5/webcomponents-base/src/Configuration .js" ;
6
+ import getEffectiveRTL from "@ui5/webcomponents-base/src/util/getEffectiveRTL .js" ;
7
7
import IconTemplate from "./build/compiled/IconTemplate.lit.js" ;
8
8
9
9
// Styles
@@ -122,7 +122,7 @@ class Icon extends UI5Element {
122
122
}
123
123
124
124
get dir ( ) {
125
- return getRTL ( ) ? "rtl" : "ltr" ;
125
+ return getEffectiveRTL ( ) ? "rtl" : "ltr" ;
126
126
}
127
127
128
128
get fontStyle ( ) {
You can’t perform that action at this time.
0 commit comments