@veritone-ce/design-system 1.12.3 → 1.12.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,7 @@
1
+ /// <reference types="react" />
1
2
  type ListItemIconProps = {
2
3
  'data-testid'?: string;
4
+ children?: React.ReactNode;
3
5
  };
4
- declare const IconListItem: ({ ...props }: ListItemIconProps) => JSX.Element;
6
+ declare const IconListItem: ({ children, ...props }: ListItemIconProps) => JSX.Element;
5
7
  export default IconListItem;
@@ -12,7 +12,7 @@ var __rest = (this && this.__rest) || function (s, e) {
12
12
  import { jsx as _jsx } from "react/jsx-runtime";
13
13
  import ListItemIcon from '@mui/material/ListItemIcon';
14
14
  const IconListItem = (_a) => {
15
- var props = __rest(_a, []);
16
- return _jsx(ListItemIcon, Object.assign({}, props));
15
+ var { children } = _a, props = __rest(_a, ["children"]);
16
+ return _jsx(ListItemIcon, Object.assign({}, props, { children: children }));
17
17
  };
18
18
  export default IconListItem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veritone-ce/design-system",
3
- "version": "1.12.3",
3
+ "version": "1.12.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "yarn storybook",