diff --git a/src/components/core/button/segmented-control.js b/src/components/core/button/segmented-control.js index 46ebab9..ac79c50 100644 --- a/src/components/core/button/segmented-control.js +++ b/src/components/core/button/segmented-control.js @@ -2,10 +2,18 @@ import React from 'react'; import PropTypes from 'prop-types'; import cn from 'classnames'; -const SegmentedControl = ({ items, value, onChange, 'aria-label': ariaLabel, buttonClassName }) => { +const SegmentedControl = ({ + items, + value, + onChange, + 'aria-label': ariaLabel, + 'aria-labelledby': ariaLabelledBy, + buttonClassName, +}) => { return (