UNPKG

robust-react-ui

Version:

A React component library, built with a focus on accessibility, extensibility and reusability.

13 lines (12 loc) 273 B
import { ReactNode } from 'react'; export interface IRegionProps { children: ReactNode; /** * An accessible label via id of another element. */ ariaLabelledBy?: string; /** * An accessible label. */ ariaLabel?: string; }