@pushwoosh/kit-icons 2.2.3 → 2.2.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.
@@ -7,6 +7,7 @@ declare const _default: {
7
7
  'small-filter-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
8
8
  'small-goal-event-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
9
  'small-inapp-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
10
+ 'small-issue-wallet-pass-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
10
11
  'small-send-data-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
11
12
  'small-send-email-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
12
13
  'small-send-kakao-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
@@ -6,6 +6,7 @@ import small_exit_filled from "./name_journey_point_size_small_type_exit_view_fi
6
6
  import small_filter_filled from "./name_journey_point_size_small_type_filter_view_filled.js";
7
7
  import small_goal_event_filled from "./name_journey_point_size_small_type_goal_event_view_filled.js";
8
8
  import small_inapp_filled from "./name_journey_point_size_small_type_inapp_view_filled.js";
9
+ import small_issue_wallet_pass_filled from "./name_journey_point_size_small_type_issue_wallet_pass_view_filled.js";
9
10
  import small_send_data_filled from "./name_journey_point_size_small_type_send_data_view_filled.js";
10
11
  import small_send_email_filled from "./name_journey_point_size_small_type_send_email_view_filled.js";
11
12
  import small_send_kakao_filled from "./name_journey_point_size_small_type_send_kakao_view_filled.js";
@@ -22,6 +23,8 @@ import small_start_by_segment_filled from "./name_journey_point_size_small_type_
22
23
  import small_wait_filled from "./name_journey_point_size_small_type_wait_view_filled.js";
23
24
  import small_wait_event_filled from "./name_journey_point_size_small_type_wait_event_view_filled.js";
24
25
  import small_webhook_filled from "./name_journey_point_size_small_type_webhook_view_filled.js";
26
+
27
+ // see journey-point-icon.types.tsx: the issue-wallet-pass entry is hand-added
25
28
  export default {
26
29
  'small-ab-splitter-filled': small_ab_splitter_filled,
27
30
  'small-audience-sync-filled': small_audience_sync_filled,
@@ -31,6 +34,7 @@ export default {
31
34
  'small-filter-filled': small_filter_filled,
32
35
  'small-goal-event-filled': small_goal_event_filled,
33
36
  'small-inapp-filled': small_inapp_filled,
37
+ 'small-issue-wallet-pass-filled': small_issue_wallet_pass_filled,
34
38
  'small-send-data-filled': small_send_data_filled,
35
39
  'small-send-email-filled': small_send_email_filled,
36
40
  'small-send-kakao-filled': small_send_kakao_filled,
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path fill="currentColor" fill-rule="evenodd" d="M3.5 3.5h9a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-9a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2m7.25 1.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0V5.5a.5.5 0 0 0-.5-.5m0 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5" clip-rule="evenodd"/></svg>
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ const NameJourneyPointSizeSmallTypeIssueWalletPassViewFilledSvg = props => /*#__PURE__*/React.createElement("svg", Object.assign({
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ width: 16,
5
+ height: 16,
6
+ fill: "none"
7
+ }, props), /*#__PURE__*/React.createElement("path", {
8
+ fill: "currentColor",
9
+ fillRule: "evenodd",
10
+ d: "M3.5 3.5h9a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-9a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2M10.75 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5m0 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5",
11
+ clipRule: "evenodd"
12
+ }));
13
+ export default NameJourneyPointSizeSmallTypeIssueWalletPassViewFilledSvg;
@@ -1,6 +1,6 @@
1
1
  import { type CommonProps } from '../../types';
2
2
  export type JourneyPointIconProps = CommonProps & {
3
3
  readonly size: 'small';
4
- readonly type: 'ab-splitter' | 'audience-sync' | 'boolean-splitter' | 'event' | 'exit' | 'filter' | 'goal-event' | 'inapp' | 'send-data' | 'send-email' | 'send-kakao' | 'send-line' | 'send-push' | 'send-sms' | 'send-telegram' | 'send-viber' | 'send-whatsapp' | 'set-tags' | 'smart-content' | 'start-by-api' | 'start-by-segment' | 'wait' | 'wait-event' | 'webhook';
4
+ readonly type: 'ab-splitter' | 'audience-sync' | 'boolean-splitter' | 'event' | 'exit' | 'filter' | 'goal-event' | 'inapp' | 'issue-wallet-pass' | 'send-data' | 'send-email' | 'send-kakao' | 'send-line' | 'send-push' | 'send-sms' | 'send-telegram' | 'send-viber' | 'send-whatsapp' | 'set-tags' | 'smart-content' | 'start-by-api' | 'start-by-segment' | 'wait' | 'wait-event' | 'webhook';
5
5
  readonly view: 'filled';
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/kit-icons",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "React component for build Pushwoosh products",
5
5
  "main": "index.js",
6
6
  "module": "index.js",