@pushwoosh/kit-icons 2.0.9 → 2.0.10

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/kit-icons",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
4
4
  "description": "React component for build Pushwoosh products",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -60,4 +60,8 @@ export declare const AssetMap: {
60
60
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
61
61
  lined: null;
62
62
  };
63
+ whatsApp: {
64
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
65
+ lined: null;
66
+ };
63
67
  };
@@ -15,6 +15,7 @@ import SafariFilledIcon from "./safari_filled.js";
15
15
  import WindowsFilledIcon from "./windows_filled.js";
16
16
  import XiaomiFilledIcon from "./xiaomi_filled.js";
17
17
  import SmsFilledIcon from "./sms_filled.js";
18
+ import WhatsAppFilledIcon from "./whatsapp_filled.js";
18
19
  export const AssetMap = {
19
20
  amazon: {
20
21
  filled: AmazonFilledIcon,
@@ -75,5 +76,9 @@ export const AssetMap = {
75
76
  sms: {
76
77
  filled: SmsFilledIcon,
77
78
  lined: null
79
+ },
80
+ whatsApp: {
81
+ filled: WhatsAppFilledIcon,
82
+ lined: null
78
83
  }
79
84
  };
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ const WhatsappFilledSvg = 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
+ fillRule: "evenodd",
10
+ d: "M18.702 5.261A9.36 9.36 0 0 0 12.039 2.5c-5.19 0-9.415 4.223-9.417 9.414-.001 1.66.433 3.28 1.257 4.707L2.543 21.5l4.992-1.31a9.4 9.4 0 0 0 4.5 1.147h.005c5.19 0 9.415-4.224 9.418-9.415a9.36 9.36 0 0 0-2.756-6.66M12.04 19.747h-.004a7.8 7.8 0 0 1-3.984-1.091l-.286-.17-2.962.777.79-2.888-.186-.296a7.8 7.8 0 0 1-1.196-4.164C4.213 7.6 7.725 4.09 12.042 4.09c2.092 0 4.057.816 5.535 2.295a7.78 7.78 0 0 1 2.29 5.536c-.001 4.315-3.513 7.826-7.827 7.826m4.293-5.861c-.235-.118-1.392-.687-1.608-.765-.215-.079-.372-.118-.53.117-.156.236-.607.766-.744.923-.138.157-.275.176-.51.059-.235-.118-.994-.367-1.892-1.168-.7-.624-1.172-1.394-1.31-1.63-.137-.235-.014-.363.104-.48.105-.105.235-.275.353-.412s.156-.236.235-.393.04-.294-.02-.412c-.059-.117-.53-1.275-.725-1.746-.191-.459-.385-.397-.53-.404a9 9 0 0 0-.45-.008.87.87 0 0 0-.628.294c-.216.235-.824.805-.824 1.962s.843 2.277.961 2.434 1.66 2.533 4.02 3.552c.561.243 1 .387 1.342.496a3.2 3.2 0 0 0 1.482.093c.452-.068 1.392-.57 1.588-1.119.196-.55.196-1.02.137-1.118s-.215-.157-.45-.275",
11
+ clipRule: "evenodd"
12
+ }));
13
+ export default WhatsappFilledSvg;
@@ -1,7 +1,7 @@
1
1
  import type { Ref } from 'react';
2
2
  export type PlatformLogoIconProps = Omit<JSX.IntrinsicElements['div'], 'ref'> & {
3
3
  readonly boxRef?: Ref<HTMLDivElement>;
4
- readonly type: 'amazon' | 'android' | 'apple' | 'baidu' | 'chrome' | 'edge' | 'email' | 'firefox' | 'huawei' | 'i-explorer' | 'mac-o-s' | 'safari' | 'windows' | 'xiaomi' | 'sms';
4
+ readonly type: 'amazon' | 'android' | 'apple' | 'baidu' | 'chrome' | 'edge' | 'email' | 'firefox' | 'huawei' | 'i-explorer' | 'mac-o-s' | 'safari' | 'windows' | 'xiaomi' | 'sms' | 'whatsApp';
5
5
  readonly size?: 'small' | 'medium' | 'large';
6
6
  readonly view?: 'filled' | 'lined';
7
7
  };