digitinary-ui 1.0.162 → 1.0.164

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.
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -3,6 +3,7 @@ import './style.scss';
3
3
  interface DropdownButtonProps {
4
4
  options?: React.ReactNode[];
5
5
  customContainer?: HTMLElement;
6
+ menuIcon?: React.ReactNode;
6
7
  }
7
- declare const ActionDropdown: ({ options, customContainer }: DropdownButtonProps) => import("react/jsx-runtime").JSX.Element;
8
+ declare const ActionDropdown: ({ options, customContainer, menuIcon, }: DropdownButtonProps) => import("react/jsx-runtime").JSX.Element;
8
9
  export default ActionDropdown;
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1,3 @@
1
+ import { IconProps } from '../types';
2
+ declare const KebabIcon: ({ width, height, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default KebabIcon;
@@ -184,3 +184,4 @@ export { default as ArticleIcon } from './ArticleIcon';
184
184
  export { default as SubSectionIcon } from './SubSectionIcon';
185
185
  export { default as MoreSquareIcon } from './MoreSquareIcon';
186
186
  export { default as Article } from './Article';
187
+ export { default as KebabIcon } from './KebabIcon';