export function getARIAProps>( props: A ): Partial { const ariaProps = {}; for (const [propName, propValue] of Object.entries(props)) { if (propName.startsWith("aria-")) { ariaProps[propName] = propValue; } } return ariaProps; }