File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ import classNames from 'classnames';
3
3
4
4
class ModalHeader extends React . Component {
5
5
render ( ) {
6
+ let { 'aria-label' : label , ...props } = this . props ;
7
+
6
8
return (
7
9
< div
8
10
{ ...this . props }
@@ -11,6 +13,7 @@ class ModalHeader extends React.Component {
11
13
< button
12
14
type = "button"
13
15
className = "close"
16
+ aria-label = { label }
14
17
onClick = { this . props . onHide } >
15
18
< span aria-hidden = "true" >
16
19
×
@@ -28,8 +31,8 @@ ModalHeader.__isModalHeader = true;
28
31
29
32
ModalHeader . propTypes = {
30
33
/**
31
- * The 'aria-label' attribute is used to define a string that labels the current element .
32
- * It is used for Assistive Technology when the label text is not visible on screen .
34
+ * The 'aria-label' attribute provides an accessible label for the close button .
35
+ * It is used for Assistive Technology when the label text is not readable .
33
36
*/
34
37
'aria-label' : React . PropTypes . string ,
35
38
You can’t perform that action at this time.
0 commit comments