wacomm 2.26.6 → 2.27.0

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,7 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ interface RedirectionArrowIconProps {
3
+ onClick: ZeroFuncType;
4
+ className?: string;
5
+ }
6
+ declare function RedirectionArrowIcon({ onClick, className }: RedirectionArrowIconProps): import("react").JSX.Element;
7
+ export default RedirectionArrowIcon;
@@ -1,6 +1,6 @@
1
1
  import { Meta, StoryObj } from '@storybook/react-vite';
2
- import { default as UpArrowTag } from './UpArrowTag';
3
- declare const meta: Meta<typeof UpArrowTag>;
2
+ import { default as RedirectionArrowIcon } from './RedirectionArrowIcon';
3
+ declare const meta: Meta<typeof RedirectionArrowIcon>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof meta>;
6
6
  export declare const Default: Story;
@@ -1,3 +1,4 @@
1
1
  export { default as EditIcon } from './EditIcon';
2
2
  export { default as CloseIcon } from './CloseIcon';
3
3
  export { default as SendIcon } from './SendIcon';
4
+ export { default as RedirectionArrowIcon } from './RedirectionArrowIcon';
@@ -9,7 +9,6 @@ export { default as MapTag } from './MapTag';
9
9
  export { default as CopyTag } from './CopyTag';
10
10
  export { default as PrivateTag } from './PrivateTag';
11
11
  export { default as LogoutTag } from './LogoutTag';
12
- export { default as UpArrowTag } from './UpArrowTag';
13
12
  export { default as CommentTag } from './CommentTag';
14
13
  export { default as GoBackTag } from './GoBackTag';
15
14
  export { default as MessageTag } from './MessageTag';