diff --git a/src/ModalHeader.js b/src/ModalHeader.js
index de7add8ad2..673971daed 100644
--- a/src/ModalHeader.js
+++ b/src/ModalHeader.js
@@ -3,6 +3,8 @@ import classNames from 'classnames';
class ModalHeader extends React.Component {
render() {
+ let { 'aria-label': label, ...props } = this.props;
+
return (
×
@@ -28,8 +31,8 @@ ModalHeader.__isModalHeader = true;
ModalHeader.propTypes = {
/**
- * The 'aria-label' attribute is used to define a string that labels the current element.
- * It is used for Assistive Technology when the label text is not visible on screen.
+ * The 'aria-label' attribute provides an accessible label for the close button.
+ * It is used for Assistive Technology when the label text is not readable.
*/
'aria-label': React.PropTypes.string,