--- paths: - "src/components/**/*.tsx" --- # Accessibility Patterns ## Interactive Components ### ariaLabel Prop Always include `ariaLabel` prop with sensible fallback: ```typescript interface Props { ariaLabel?: string; }
``` ### Disabled States ```tsx