Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/icons/InfoOutlined/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default as InfoOutlined } from './InfoOutlined';
export { default as InfoOutlinedIcon } from './InfoOutlined';
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Renaming the export from InfoOutlined to InfoOutlinedIcon is a breaking change. Any components currently importing InfoOutlined from this module or through the main icons entry point will fail to build. If this icon is used in other parts of the application that are not updated in this PR, consider providing an alias to maintain backward compatibility during the transition.

Suggested change
export { default as InfoOutlinedIcon } from './InfoOutlined';
export { default as InfoOutlinedIcon, default as InfoOutlined } from './InfoOutlined';

Loading