Repository URL to install this package:
|
Version:
4.0.29 ▾
|
import { TextBoxProps, TextBoxState } from '../typings'
export function toAriaLabel(props: TextBoxProps, state: TextBoxState) {
const ariaLabelText = props.ariaLabel || state.ariaLabel
const ariaLabeledBy = props.ariaLabeledBy || state.ariaLabeledBy
return ariaLabelText || ariaLabeledBy
}