Remapping iInCircle and questionInCircle and deprecating help icon (#223142)

## Summary

This PR closes the issue https://github.com/elastic/kibana/issues/221380
and does 3 things:
1. Replaces all current usages of `iInCircle` with `info` (no visual
changes)
2. Replaces all current usages of `questionInCircle` with `question`(no
visual changes)
3. Replaces all current `help` icon usages with `question`(lifesaver
icon replaced with question)

## Screenshots:
![CleanShot 2025-06-18 at 10 34
01@2x](https://github.com/user-attachments/assets/4379e51e-7422-4570-b452-c17ee26f2d64)
![CleanShot 2025-06-18 at 10 34
13@2x](https://github.com/user-attachments/assets/270056c7-4502-47ef-874f-862149fa27ec)
![CleanShot 2025-06-18 at 10 34
04@2x](https://github.com/user-attachments/assets/1dff8faf-65b7-4208-b568-7718b1a6b729)

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Anton Dosov <anton.dosov@elastic.co>
This commit is contained in:
Kate Sosedova 2025-06-25 21:52:04 +02:00 committed by GitHub
parent 2ce244f006
commit 0d2125427f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
644 changed files with 1195 additions and 1274 deletions

View file

@ -789,7 +789,7 @@ function NoShardDelayCallout() {
</>
}
color="warning"
iconType="help"
iconType="question"
>
<p>
This demo works best with <EuiCode>shardDelay</EuiCode> aggregation which simulates slow
@ -805,7 +805,7 @@ function NoShardDelayCallout() {
function NoDataViewsCallout() {
return (
<EuiCallOut title={<>Missing data views!</>} color="warning" iconType="help">
<EuiCallOut title={<>Missing data views!</>} color="warning" iconType="question">
<p>This demo requires at least one data view.</p>
</EuiCallOut>
);