Add id prop to ReactWidgetsCommonProps

This commit is contained in:
RetroCraft
2018-03-04 22:20:40 -05:00
parent fbba9f55be
commit ed5d407ac1

View File

@@ -19,6 +19,10 @@ interface ReactWidgetsCommonProps<C> extends React.Props<C> {
* @default false
*/
isRtl?: boolean;
/**
* Used to label and annotate aria- attributes
*/
id?: string;
}
export interface AutoFocus {