Accessibility
- Web renders a real
<a>element, so browser link semantics, context menus, and assistive technology navigation work normally. - Do not omit
hreffor navigable links. - Native renders a pressable with
accessibilityRole="link". - External links get
rel="noopener noreferrer"by default whenexternalis true. - Link labels must describe the destination. Avoid "click here" or "learn more" without surrounding context.
- Focus styles use
focus-visible:ring-ring; do not remove them without an equivalent visible focus treatment.