UNPKG

@base-ui/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

8 lines (7 loc) 214 B
'use client'; export function getDefaultLabelId(id) { return id == null ? undefined : `${id}-label`; } export function resolveAriaLabelledBy(fieldLabelId, localLabelId) { return fieldLabelId ?? localLabelId; }