Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit c76c440

Browse files
committed
add className optional property
1 parent 02f8509 commit c76c440

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

react-redux-form.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,10 @@ export interface ErrorsProps {
489489
* * component={CustomError} will wrap the error in a <CustomError> component, which will receive the same props as above.
490490
*/
491491
component?: string | React.StatelessComponent<ErrorsProps & CustomComponentProps> | React.ComponentClass<ErrorsProps & CustomComponentProps>;
492+
/**
493+
* CSS Class Name(s)
494+
*/
495+
className?: string;
492496
}
493497

494498
export class Errors extends React.Component<ErrorsProps, {}> {

0 commit comments

Comments
 (0)