File: creating-components.md | Updated: 11/16/2025
When building custom components, it's important to keep accessibility in mind. While Ink provides the building blocks, ensuring your components are accessible will make your CLIs usable by a wider audience.
useIsScreenReaderEnabled hook to detect if a screen reader is active. You can then render more descriptive output for screen reader users.aria-role, aria-state, and aria-label props on <Box> and <Text> to provide semantic meaning to screen readers.For a practical example of building an accessible component, see the ARIA example.