Follow up to breaking change [PR](https://github.com/patternfly/react-component-groups/pull/145) We've renamed some NotAuthorized props to comply with its base component - PF EmptyState rename `description` to `bodyText` `title` to `titleText` Example: ``` <NotAuthorized description="Description text" title="Title text" /> ``` becomes ``` <NotAuthorized bodyText="Description text" titleText="Title text" /> ``` Required actions: - Build codemod - Build test - Update readme with description & example