Skip to content

Commit 92af5db

Browse files
authored
Update CHANGELOG and docs site after merging inline SVGs PR (#168)
Followup to #160.
1 parent 4154cce commit 92af5db

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
- Table spacing is now smaller [(#158)](https://github.com/elastic/eui/pull/158)
88
- Dark theme forms now have better contrast with their borders [(#158)](https://github.com/elastic/eui/pull/158)
99
- Added icons to match Kibana's app directory [(#162)](https://github.com/elastic/eui/pull/162)
10+
- Convert icons from SVG to React component during the build and stop using
11+
sprites [(#160)](https://github.com/elastic/eui/pull/160)
1012

1113
**Bug fixes**
1214

src-docs/src/views/icon/accessibility.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default () => (
99
<EuiIcon
1010
type="search"
1111
size="l"
12-
title="Find information"
12+
aria-label="Find information"
1313
/>
1414
</div>
1515
);

src-docs/src/views/icon/icon_example.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,7 @@ export default props => (
165165
}]}
166166
text={
167167
<p>
168-
By default, this component will use a human-readable version of the <EuiCode>type</EuiCode>
169-
to title the SVG. You can specify a <EuiCode>title</EuiCode> prop to override this.
168+
You can title the SVG by passing the `aria-label` prop to <EuiCode>EuiCode</EuiCode>. No value is set by default.
170169
</p>
171170
}
172171
demo={

0 commit comments

Comments
 (0)