diff --git a/CHANGELOG.md b/CHANGELOG.md index 80e509341c0b..cf7f814c875d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## [`master`](https://github.com/elastic/eui/tree/master) -- Allow `onClick` and `href` props on `EuiListGroupItem` and convert to TypeScript ([#1933](https://github.com/elastic/eui/pull/1933)) +- Added support for `onClick` and `href` props on `EuiListGroupItem` and converted to TypeScript ([#1933](https://github.com/elastic/eui/pull/1933)) ## [`13.3.0`](https://github.com/elastic/eui/tree/v13.3.0) diff --git a/src/components/list_group/list_group_item.tsx b/src/components/list_group/list_group_item.tsx index 6d6bb72a89b4..9600cfeea642 100644 --- a/src/components/list_group/list_group_item.tsx +++ b/src/components/list_group/list_group_item.tsx @@ -44,12 +44,12 @@ export type EuiListGroupItemProps = CommonProps & HTMLAttributes > & { /** - * Set the size of the label text + * Size of the label text */ size?: ItemSize; /** - * Set the size of the label text + * Content to be displayed in the list item */ label: ReactNode;