5 lines
193 B
TypeScript
5 lines
193 B
TypeScript
import type * as React from 'react';
|
|
export type HTMLAriaDataAttributes = React.AriaAttributes & {
|
|
[key: `data-${string}`]: unknown;
|
|
} & Pick<React.HTMLAttributes<HTMLDivElement>, 'role'>;
|