hc-app-icons 2.0.22 → 2.0.23

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ #### v2.0.23
4
+
5
+ - Add Money icon (circle dollar filled) for giving tab navigation
6
+
7
+ ---
8
+
3
9
  #### v2.0.22
4
10
 
5
11
  - Add Money Light icon (circle dollar outline) for giving tab navigation
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24"><mask id="a" width="24" height="24" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path d="M0 0h24v24H0z"/></mask><g mask="url(#a)"><path d="M11.1 19h1.75v-1.25q1.25-.225 2.15-.975t.9-2.225q0-1.05-.6-1.925T12.9 11.1q-1.5-.5-2.075-.875T10.25 9.2t.463-1.025T12.05 7.8q.8 0 1.25.388.45.387.65.962l1.6-.65a3.35 3.35 0 0 0-1.013-1.525q-.737-.65-1.637-.725V5h-1.75v1.25q-1.25.275-1.95 1.1T8.5 9.2q0 1.175.688 1.9t2.162 1.25q1.576.575 2.188 1.025t.612 1.175q0 .825-.588 1.212-.587.388-1.412.388t-1.463-.512q-.637-.513-.937-1.538l-1.65.65q.35 1.2 1.088 1.938.737.737 1.912 1.012zm.9 3a9.7 9.7 0 0 1-3.9-.788 10.1 10.1 0 0 1-3.175-2.137q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22m0-2q3.35 0 5.675-2.325T20 12t-2.325-5.675T12 4 6.325 6.325 4 12t2.325 5.675T12 20"/></g></svg>
@@ -89,6 +89,7 @@ export { default as IconMentalHealthSolid } from "./icons/mental-health-solid.sv
89
89
  export { default as IconMobilephoneSolid } from "./icons/mobilephone-solid.svg";
90
90
  export { default as IconMoneyLight } from "./icons/money-light.svg";
91
91
  export { default as IconMoneySolid } from "./icons/money-solid.svg";
92
+ export { default as IconMoney } from "./icons/money.svg";
92
93
  export { default as IconMusicSolid } from "./icons/music-solid.svg";
93
94
  export { default as IconNewspaperSolid } from "./icons/newspaper-solid.svg";
94
95
  export { default as IconNextstepSolid } from "./icons/nextstep-solid.svg";
@@ -0,0 +1,14 @@
1
+ import { __rest, __assign } from '../../../../node_modules/tslib/tslib.es6.js';
2
+ import { jsxs, jsx } from 'react/jsx-runtime';
3
+ import generateIcon from '../generateIcon.js';
4
+
5
+ var SvgComponent = function (_a) {
6
+ var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
7
+ return (jsxs("svg", __assign({ width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId }, props, { children: [title ? jsx("title", { id: titleId, children: title }) : null, jsx("mask", { id: "a", width: 24, height: 24, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: {
8
+ maskType: "alpha",
9
+ }, children: jsx("path", { fill: "#D9D9D9", d: "M0 0h24v24H0z" }) }), jsx("g", { mask: "url(#a)", children: jsx("path", { fill: "currentColor", d: "M11.1 19h1.75v-1.25q1.25-.225 2.15-.975t.9-2.225q0-1.05-.6-1.925T12.9 11.1q-1.5-.5-2.075-.875T10.25 9.2t.463-1.025T12.05 7.8q.8 0 1.25.388.45.387.65.962l1.6-.65a3.35 3.35 0 0 0-1.013-1.525q-.737-.65-1.637-.725V5h-1.75v1.25q-1.25.275-1.95 1.1T8.5 9.2q0 1.175.688 1.9t2.162 1.25q1.576.575 2.188 1.025t.612 1.175q0 .825-.588 1.212-.587.388-1.412.388t-1.463-.512q-.637-.513-.937-1.538l-1.65.65q.35 1.2 1.088 1.938.737.737 1.912 1.012zm.9 3a9.7 9.7 0 0 1-3.9-.788 10.1 10.1 0 0 1-3.175-2.137q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22m0-2q3.35 0 5.675-2.325T20 12t-2.325-5.675T12 4 6.325 6.325 4 12t2.325 5.675T12 20" }) })] })));
10
+ };
11
+ var IconMoney = generateIcon(SvgComponent);
12
+
13
+ export { IconMoney as default };
14
+ //# sourceMappingURL=IconMoney.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconMoney.js","sources":["../../../../../generated/v2/generated/v2/web/components/IconMoney.tsx"],"sourcesContent":[null],"names":["_jsxs","_jsx"],"mappings":";;;;AAMA,IAAM,YAAY,GAAG,UAAC,EAIgB,EAAA;IAHpC,IAAA,KAAK,WAAA,EACL,OAAO,aAAA,EACJ,KAAK,GAHY,MAAA,CAAA,EAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAIrB,CADS;AAER,IAAA,QACEA,IAAA,CAAA,KAAA,EAAA,QAAA,CAAA,EACE,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,IAAI,EAAC,MAAM,EACX,OAAO,EAAC,WAAW,EACF,iBAAA,EAAA,OAAO,EACpB,EAAA,KAAK,EAER,EAAA,QAAA,EAAA,CAAA,KAAK,GAAGC,GAAA,CAAA,OAAA,EAAA,EAAO,EAAE,EAAE,OAAO,EAAG,QAAA,EAAA,KAAK,EAAS,CAAA,GAAG,IAAI,EACnDA,GACE,CAAA,MAAA,EAAA,EAAA,EAAE,EAAC,GAAG,EACN,KAAK,EAAE,EAAE,EACT,MAAM,EAAE,EAAE,EACV,CAAC,EAAE,CAAC,EACJ,CAAC,EAAE,CAAC,EACJ,SAAS,EAAC,gBAAgB,EAC1B,KAAK,EAAE;AACL,oBAAA,QAAQ,EAAE,OAAO;AAClB,iBAAA,EAAA,QAAA,EAEDA,GAAM,CAAA,MAAA,EAAA,EAAA,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,eAAe,EAAG,CAAA,EAAA,CACpC,EACPA,GAAA,CAAA,GAAA,EAAA,EAAG,IAAI,EAAC,SAAS,EAAA,QAAA,EACfA,GACE,CAAA,MAAA,EAAA,EAAA,IAAI,EAAC,cAAc,EACnB,CAAC,EAAC,62BAA62B,EAC/2B,CAAA,EAAA,CACA,CACA,EAAA,CAAA,CAAA;AAEV,CAAC;AACD,gBAAe,YAAY,CAAC,YAAY,CAAC;;;;"}
@@ -86,6 +86,7 @@ export { default as IconMemorialSolid } from './components/IconMemorialSolid.js'
86
86
  export { default as IconMentalHealthLite } from './components/IconMentalHealthLite.js';
87
87
  export { default as IconMentalHealthSolid } from './components/IconMentalHealthSolid.js';
88
88
  export { default as IconMobilephoneSolid } from './components/IconMobilephoneSolid.js';
89
+ export { default as IconMoney } from './components/IconMoney.js';
89
90
  export { default as IconMoneyLight } from './components/IconMoneyLight.js';
90
91
  export { default as IconMoneySolid } from './components/IconMoneySolid.js';
91
92
  export { default as IconMusicSolid } from './components/IconMusicSolid.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,2 @@
1
+ declare const _default: import("../generateIcon").IIconComponentType;
2
+ export default _default;
@@ -86,6 +86,7 @@ export { default as IconMemorialSolid } from "./components/IconMemorialSolid";
86
86
  export { default as IconMentalHealthLite } from "./components/IconMentalHealthLite";
87
87
  export { default as IconMentalHealthSolid } from "./components/IconMentalHealthSolid";
88
88
  export { default as IconMobilephoneSolid } from "./components/IconMobilephoneSolid";
89
+ export { default as IconMoney } from "./components/IconMoney";
89
90
  export { default as IconMoneyLight } from "./components/IconMoneyLight";
90
91
  export { default as IconMoneySolid } from "./components/IconMoneySolid";
91
92
  export { default as IconMusicSolid } from "./components/IconMusicSolid";
@@ -89,6 +89,7 @@ export declare const IconMentalHealthSolid: string;
89
89
  export declare const IconMobilephoneSolid: string;
90
90
  export declare const IconMoneyLight: string;
91
91
  export declare const IconMoneySolid: string;
92
+ export declare const IconMoney: string;
92
93
  export declare const IconMusicSolid: string;
93
94
  export declare const IconNewspaperSolid: string;
94
95
  export declare const IconNextstepSolid: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hc-app-icons",
3
- "version": "2.0.22",
3
+ "version": "2.0.23",
4
4
  "main": "./dist/generated/",
5
5
  "types": "dist/types/index.d.ts",
6
6
  "typesVersions": {