@pushwoosh/kit-icons 2.2.2 → 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.
Files changed (24) hide show
  1. package/icons/index.d.ts +1 -0
  2. package/icons/index.js +2 -1
  3. package/icons/journey-point-icon/assets/index.d.ts +1 -0
  4. package/icons/journey-point-icon/assets/index.js +4 -0
  5. package/icons/journey-point-icon/assets/name=journey point, size=small, type=issue-wallet-pass, view=filled.svg +1 -0
  6. package/icons/journey-point-icon/assets/name_journey_point_size_small_type_issue_wallet_pass_view_filled.js +13 -0
  7. package/icons/journey-point-icon/journey-point-icon.types.d.ts +1 -1
  8. package/icons/megaphone-icon/assets/index.d.ts +7 -0
  9. package/icons/megaphone-icon/assets/index.js +10 -0
  10. package/icons/megaphone-icon/assets/name=megaphone, size=medium, view=filled.svg +1 -0
  11. package/icons/megaphone-icon/assets/name=megaphone, size=medium, view=lined.svg +1 -0
  12. package/icons/megaphone-icon/assets/name=megaphone, size=small, view=filled.svg +1 -0
  13. package/icons/megaphone-icon/assets/name=megaphone, size=small, view=lined.svg +1 -0
  14. package/icons/megaphone-icon/assets/name_megaphone_size_medium_view_filled.js +11 -0
  15. package/icons/megaphone-icon/assets/name_megaphone_size_medium_view_lined.js +11 -0
  16. package/icons/megaphone-icon/assets/name_megaphone_size_small_view_filled.js +11 -0
  17. package/icons/megaphone-icon/assets/name_megaphone_size_small_view_lined.js +11 -0
  18. package/icons/megaphone-icon/index.d.ts +2 -0
  19. package/icons/megaphone-icon/index.js +2 -0
  20. package/icons/megaphone-icon/megaphone-icon.component.d.ts +2 -0
  21. package/icons/megaphone-icon/megaphone-icon.component.js +3 -0
  22. package/icons/megaphone-icon/megaphone-icon.types.d.ts +5 -0
  23. package/icons/megaphone-icon/megaphone-icon.types.js +1 -0
  24. package/package.json +1 -1
package/icons/index.d.ts CHANGED
@@ -139,3 +139,4 @@ export * from './text-link-icon';
139
139
  export * from './text-style-icon';
140
140
  export * from './journey-point-icon';
141
141
  export * from './archive-icon';
142
+ export * from './megaphone-icon';
package/icons/index.js CHANGED
@@ -138,4 +138,5 @@ export * from './text-align-icon';
138
138
  export * from './text-link-icon';
139
139
  export * from './text-style-icon';
140
140
  export * from './journey-point-icon';
141
- export * from './archive-icon';
141
+ export * from './archive-icon';
142
+ export * from './megaphone-icon';
@@ -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
  };
@@ -0,0 +1,7 @@
1
+ declare const _default: {
2
+ 'medium-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
3
+ 'medium-lined': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
+ 'small-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
+ 'small-lined': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
6
+ };
7
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import medium_filled from "./name_megaphone_size_medium_view_filled.js";
2
+ import medium_lined from "./name_megaphone_size_medium_view_lined.js";
3
+ import small_filled from "./name_megaphone_size_small_view_filled.js";
4
+ import small_lined from "./name_megaphone_size_small_view_lined.js";
5
+ export default {
6
+ 'medium-filled': medium_filled,
7
+ 'medium-lined': medium_lined,
8
+ 'small-filled': small_filled,
9
+ 'small-lined': small_lined
10
+ };
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path fill="currentColor" d="M14.55 4.177a2 2 0 0 1 2.575 1.916v10.624a2 2 0 0 1-2.574 1.916l-3.24-.973a4.152 4.152 0 0 1-7.817-2.344l-.943-.284a2 2 0 0 1-1.426-1.915V9.693a2 2 0 0 1 1.426-1.915zM4.97 15.758a2.652 2.652 0 0 0 4.864 1.46zm13.484-2.188a.75.75 0 0 1 1.006-.335l1.61.804a.75.75 0 0 1-.67 1.342l-1.61-.806a.75.75 0 0 1-.336-1.005m3.671-2.915a.75.75 0 0 1 0 1.5h-3a.75.75 0 1 1 0-1.5zm-1.726-3.226a.75.75 0 0 1 .671 1.342l-1.61.804a.75.75 0 1 1-.67-1.34z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path fill="currentColor" d="M14.426 4.178A2 2 0 0 1 17 6.094v10.623a2 2 0 0 1-2.334 1.972l-.24-.056-3.24-.972a4.152 4.152 0 0 1-7.817-2.346l-.943-.282A2 2 0 0 1 1 13.117V9.693c0-.827.51-1.564 1.27-1.862l.156-.054zm-9.58 11.58a2.652 2.652 0 0 0 4.864 1.459zm10.01-10.144-12 3.6a.5.5 0 0 0-.356.48v3.423a.5.5 0 0 0 .356.479l12 3.6a.5.5 0 0 0 .644-.48V6.095a.5.5 0 0 0-.644-.48m3.473 7.956a.75.75 0 0 1 1.006-.336l1.61.806a.75.75 0 1 1-.67 1.34l-1.61-.804a.75.75 0 0 1-.336-1.006M22 10.655a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5zM20.274 7.43a.75.75 0 0 1 .671 1.341l-1.61.805a.75.75 0 1 1-.67-1.342z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path fill="currentColor" d="M10.55 2.046a2 2 0 0 1 2.574 1.915v2.198a1.746 1.746 0 0 1 0 2.68v1.746A2 2 0 0 1 10.55 12.5l-1.782-.535a3.242 3.242 0 0 1-6.193-1.859L2.55 10.1a2 2 0 0 1-1.426-1.915V6.361A2 2 0 0 1 2.55 4.445zM4.02 10.542a1.742 1.742 0 0 0 3.3.99z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path fill="currentColor" d="M10.426 2.015A2 2 0 0 1 13 3.931v2.131a1.75 1.75 0 0 1 0 2.874v1.619a2 2 0 0 1-2.334 1.972l-.24-.056-1.782-.536a3.242 3.242 0 0 1-6.193-1.858l-.025-.007a2 2 0 0 1-1.42-1.75L1 8.154V6.331c0-.828.51-1.565 1.27-1.862l.156-.053zm-6.529 8.497a1.742 1.742 0 0 0 3.3.99zm6.96-7.06-8 2.4a.5.5 0 0 0-.357.479v1.824a.5.5 0 0 0 .356.479l8 2.4a.5.5 0 0 0 .644-.48V3.932a.5.5 0 0 0-.644-.479"/></svg>
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ const NameMegaphoneSizeMediumViewFilledSvg = props => /*#__PURE__*/React.createElement("svg", Object.assign({
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ width: 24,
5
+ height: 24,
6
+ fill: "none"
7
+ }, props), /*#__PURE__*/React.createElement("path", {
8
+ fill: "currentColor",
9
+ d: "M14.55 4.177a2 2 0 0 1 2.575 1.916v10.624a2 2 0 0 1-2.574 1.916l-3.24-.973a4.152 4.152 0 0 1-7.817-2.344l-.943-.284a2 2 0 0 1-1.426-1.915V9.693a2 2 0 0 1 1.426-1.915zM4.97 15.758a2.652 2.652 0 0 0 4.864 1.46zm13.484-2.188a.75.75 0 0 1 1.006-.335l1.61.804a.75.75 0 0 1-.67 1.342l-1.61-.806a.75.75 0 0 1-.336-1.005m3.671-2.915a.75.75 0 0 1 0 1.5h-3a.75.75 0 1 1 0-1.5zm-1.726-3.226a.75.75 0 0 1 .671 1.342l-1.61.804a.75.75 0 1 1-.67-1.34z"
10
+ }));
11
+ export default NameMegaphoneSizeMediumViewFilledSvg;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ const NameMegaphoneSizeMediumViewLinedSvg = props => /*#__PURE__*/React.createElement("svg", Object.assign({
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ width: 24,
5
+ height: 24,
6
+ fill: "none"
7
+ }, props), /*#__PURE__*/React.createElement("path", {
8
+ fill: "currentColor",
9
+ d: "M14.426 4.178A2 2 0 0 1 17 6.094v10.623a2 2 0 0 1-2.334 1.972l-.24-.056-3.24-.972a4.152 4.152 0 0 1-7.817-2.346l-.943-.282A2 2 0 0 1 1 13.117V9.693c0-.827.51-1.564 1.27-1.862l.156-.054zm-9.58 11.58a2.652 2.652 0 0 0 4.864 1.459zm10.01-10.144-12 3.6a.5.5 0 0 0-.356.48v3.423a.5.5 0 0 0 .356.479l12 3.6a.5.5 0 0 0 .644-.48V6.095a.5.5 0 0 0-.644-.48m3.473 7.956a.75.75 0 0 1 1.006-.336l1.61.806a.75.75 0 1 1-.67 1.34l-1.61-.804a.75.75 0 0 1-.336-1.006M22 10.655a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5zM20.274 7.43a.75.75 0 0 1 .671 1.341l-1.61.805a.75.75 0 1 1-.67-1.342z"
10
+ }));
11
+ export default NameMegaphoneSizeMediumViewLinedSvg;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ const NameMegaphoneSizeSmallViewFilledSvg = 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
+ d: "M10.55 2.046a2 2 0 0 1 2.574 1.915v2.198a1.746 1.746 0 0 1 0 2.68v1.746A2 2 0 0 1 10.55 12.5l-1.782-.535a3.242 3.242 0 0 1-6.193-1.859L2.55 10.1a2 2 0 0 1-1.426-1.915V6.361A2 2 0 0 1 2.55 4.445zm-6.53 8.496a1.742 1.742 0 0 0 3.3.99z"
10
+ }));
11
+ export default NameMegaphoneSizeSmallViewFilledSvg;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ const NameMegaphoneSizeSmallViewLinedSvg = 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
+ d: "M10.426 2.015A2 2 0 0 1 13 3.931v2.131a1.75 1.75 0 0 1 0 2.874v1.619a2 2 0 0 1-2.334 1.972l-.24-.056-1.782-.536a3.242 3.242 0 0 1-6.193-1.858l-.025-.007a2 2 0 0 1-1.42-1.75L1 8.154V6.331a2 2 0 0 1 1.27-1.862l.156-.053zm-6.529 8.497a1.742 1.742 0 0 0 3.3.99zm6.96-7.06-8 2.4a.5.5 0 0 0-.357.479v1.824a.5.5 0 0 0 .356.479l8 2.4a.5.5 0 0 0 .644-.48V3.932a.5.5 0 0 0-.644-.479"
10
+ }));
11
+ export default NameMegaphoneSizeSmallViewLinedSvg;
@@ -0,0 +1,2 @@
1
+ export * from './megaphone-icon.component';
2
+ export * from './megaphone-icon.types';
@@ -0,0 +1,2 @@
1
+ export * from './megaphone-icon.component';
2
+ export * from './megaphone-icon.types';
@@ -0,0 +1,2 @@
1
+ import { type MegaphoneIconProps } from './megaphone-icon.types';
2
+ export declare const MegaphoneIcon: import("react").FC<MegaphoneIconProps>;
@@ -0,0 +1,3 @@
1
+ import assets from './assets';
2
+ import { createIconComponent } from '../../createIconComponent';
3
+ export const MegaphoneIcon = createIconComponent('MegaphoneIcon', ['size', 'view'], assets);
@@ -0,0 +1,5 @@
1
+ import { type CommonProps } from '../../types';
2
+ export type MegaphoneIconProps = CommonProps & {
3
+ readonly size: 'medium' | 'small';
4
+ readonly view: 'filled' | 'lined';
5
+ };
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/kit-icons",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
4
4
  "description": "React component for build Pushwoosh products",
5
5
  "main": "index.js",
6
6
  "module": "index.js",