diff --git a/src/meter/Meter.ts b/src/meter/Meter.ts index ae64faf6a..16e4b4235 100644 --- a/src/meter/Meter.ts +++ b/src/meter/Meter.ts @@ -45,6 +45,7 @@ export const Meter = createComponent({ useWarning( !props["aria-label"] && !props["aria-labelledby"], "You should provide either `aria-label` or `aria-labelledby` props.", + "See https://w3c.github.io/aria-practices/#wai-aria-roles-states-and-properties-15", ); return useCreateElement(type, props, children); }, diff --git a/src/pagination/Pagination.ts b/src/pagination/Pagination.ts index 07fc4e17d..71768f37d 100644 --- a/src/pagination/Pagination.ts +++ b/src/pagination/Pagination.ts @@ -27,6 +27,7 @@ export const Pagination = createComponent({ useWarning( !props["aria-label"] && !props["aria-labelledby"], "You should provide either `aria-label` or `aria-labelledby` props.", + "See https://mzl.la/2VCL8ys", ); return useCreateElement(type, props, children); }, diff --git a/src/slider/SliderInput.ts b/src/slider/SliderInput.ts index a694c5bc8..97d6f2865 100644 --- a/src/slider/SliderInput.ts +++ b/src/slider/SliderInput.ts @@ -143,6 +143,7 @@ export const SliderInput = createComponent({ useWarning( !props["aria-label"] && !props["aria-labelledby"], "You should provide either `aria-label` or `aria-labelledby` props.", + "See https://www.w3.org/TR/wai-aria-practices-1.1/#slider_roles_states_props", ); return useCreateElement(type, props, children); },