We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a3810f commit 05aa59eCopy full SHA for 05aa59e
packages/core/addon/components/eui-icon/index.ts
@@ -113,7 +113,7 @@ export default class EuiIcon extends Component<EuiIconArgs> {
113
114
getEuiIconSvgPath(type: EuiIconType) {
115
const config = getOwner(this).resolveRegistration('config:environment');
116
- const svgPath = config?.['ember-eui']?.svgPath || 'svg/assets/';
+ const svgPath = config?.['@ember-eui/core']?.svgPath || 'svg/assets/';
117
let euiIcon = typeToPathMap[type].replace(/_/g, '-').toLowerCase();
118
return `${svgPath}${euiIcon}`;
119
}
0 commit comments