hc-app-icons 2.0.24 → 2.0.26

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,17 @@
1
1
  # Changelog
2
2
 
3
+ #### v2.0.26
4
+
5
+ - Add Category icon
6
+
7
+ ---
8
+
9
+ #### v2.0.25
10
+
11
+ - Add Share Story icons: `share-story`, `share-story-1` (chat bubble variants; exports `IconShareStory`, `IconShareStory1`)
12
+
13
+ ---
14
+
3
15
  #### v2.0.24
4
16
 
5
17
  - Add Map Light icon
@@ -0,0 +1 @@
1
+ <svg data-name="Layer 1" viewBox="0 0 24 24"><path d="M6.5 11 12 2l5.5 9zm11 11c-1.25 0-2.31-.44-3.19-1.31-.87-.88-1.31-1.94-1.31-3.19s.44-2.31 1.31-3.19c.88-.87 1.94-1.31 3.19-1.31s2.31.44 3.19 1.31c.87.88 1.31 1.94 1.31 3.19s-.44 2.31-1.31 3.19c-.88.87-1.94 1.31-3.19 1.31M3 21.5v-8h8v8zM17.5 20c.7 0 1.29-.24 1.77-.73.49-.48.73-1.07.73-1.77s-.24-1.29-.73-1.77c-.48-.49-1.07-.73-1.77-.73s-1.29.24-1.77.73c-.49.48-.73 1.07-.73 1.77s.24 1.29.73 1.77c.48.49 1.07.73 1.77.73M5 19.5h4v-4H5zM10.05 9h3.9L12 5.85z"/></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24"><path d="M6 14h12v-2H6zm0-3h12V9H6zm0-3h12V6H6zm16 14-4-4H4c-.55 0-1.02-.2-1.41-.59S2 16.55 2 16V4c0-.55.2-1.02.59-1.41S3.45 2 4 2h16c.55 0 1.02.2 1.41.59S22 3.45 22 4zM4 16h14.85L20 17.125V4H4z"/></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24"><path d="M6 14h12v-2H6zm0-3h12V9H6zm0-3h12V6H6zM4 18c-.55 0-1.02-.2-1.41-.59S2 16.55 2 16V4c0-.55.2-1.02.59-1.41S3.45 2 4 2h16c.55 0 1.02.2 1.41.59S22 3.45 22 4v18l-4-4z"/></svg>
@@ -13,6 +13,7 @@ export { default as IconCalendarclockSolid } from "./icons/calendarclock-solid.s
13
13
  export { default as IconCamera } from "./icons/camera.svg";
14
14
  export { default as IconCart } from "./icons/cart.svg";
15
15
  export { default as IconCast } from "./icons/cast.svg";
16
+ export { default as IconCategory } from "./icons/category.svg";
16
17
  export { default as IconCelebrateRecovery } from "./icons/celebrate-recovery.svg";
17
18
  export { default as IconCheckSolid } from "./icons/check-solid.svg";
18
19
  export { default as IconChecklistSolid } from "./icons/checklist-solid.svg";
@@ -127,6 +128,8 @@ export { default as IconSearchSolid } from "./icons/search-solid.svg";
127
128
  export { default as IconServeSolid } from "./icons/serve-solid.svg";
128
129
  export { default as IconSettingsSolid } from "./icons/settings-solid.svg";
129
130
  export { default as IconShareSolid } from "./icons/share-solid.svg";
131
+ export { default as IconShareStory1 } from "./icons/share-story-1.svg";
132
+ export { default as IconShareStory } from "./icons/share-story.svg";
130
133
  export { default as IconSharestorySolid } from "./icons/sharestory-solid.svg";
131
134
  export { default as IconSharingSolid } from "./icons/sharing-solid.svg";
132
135
  export { default as IconShieldLight } from "./icons/shield-light.svg";
@@ -0,0 +1,12 @@
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({ "data-name": "Layer 1", viewBox: "0 0 24 24", width: "1em", height: "1em", "aria-labelledby": titleId }, props, { children: [title ? jsx("title", { id: titleId, children: title }) : null, jsx("path", { d: "M6.5 11 12 2l5.5 9zm11 11c-1.25 0-2.31-.44-3.19-1.31-.87-.88-1.31-1.94-1.31-3.19s.44-2.31 1.31-3.19c.88-.87 1.94-1.31 3.19-1.31s2.31.44 3.19 1.31c.87.88 1.31 1.94 1.31 3.19s-.44 2.31-1.31 3.19c-.88.87-1.94 1.31-3.19 1.31M3 21.5v-8h8v8zM17.5 20c.7 0 1.29-.24 1.77-.73.49-.48.73-1.07.73-1.77s-.24-1.29-.73-1.77c-.48-.49-1.07-.73-1.77-.73s-1.29.24-1.77.73c-.49.48-.73 1.07-.73 1.77s.24 1.29.73 1.77c.48.49 1.07.73 1.77.73M5 19.5h4v-4H5zM10.05 9h3.9L12 5.85z", fill: "currentColor" })] })));
8
+ };
9
+ var IconCategory = generateIcon(SvgComponent);
10
+
11
+ export { IconCategory as default };
12
+ //# sourceMappingURL=IconCategory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconCategory.js","sources":["../../../../../generated/v2/generated/v2/web/components/IconCategory.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;IAER,QACEA,oCACY,SAAS,EACnB,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EAAA,iBAAA,EACK,OAAO,EACpB,EAAA,KAAK,EAER,EAAA,QAAA,EAAA,CAAA,KAAK,GAAGC,GAAO,CAAA,OAAA,EAAA,EAAA,EAAE,EAAE,OAAO,EAAA,QAAA,EAAG,KAAK,EAAS,CAAA,GAAG,IAAI,EACnDA,cACE,CAAC,EAAC,wcAAwc,EAC1c,IAAI,EAAC,cAAc,EAAA,CACnB,CACE,EAAA,CAAA,CAAA;AAEV,CAAC;AACD,mBAAe,YAAY,CAAC,YAAY,CAAC;;;;"}
@@ -0,0 +1,12 @@
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({ viewBox: "0 0 24 24", width: "1em", height: "1em", "aria-labelledby": titleId }, props, { children: [title ? jsx("title", { id: titleId, children: title }) : null, jsx("path", { fill: "currentColor", d: "M6 14h12v-2H6zm0-3h12V9H6zm0-3h12V6H6zM4 18c-.55 0-1.02-.2-1.41-.59S2 16.55 2 16V4c0-.55.2-1.02.59-1.41S3.45 2 4 2h16c.55 0 1.02.2 1.41.59S22 3.45 22 4v18l-4-4z" })] })));
8
+ };
9
+ var IconShareStory = generateIcon(SvgComponent);
10
+
11
+ export { IconShareStory as default };
12
+ //# sourceMappingURL=IconShareStory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconShareStory.js","sources":["../../../../../generated/v2/generated/v2/web/components/IconShareStory.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;IAER,QACEA,uBACE,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,qBACK,OAAO,EAAA,EACpB,KAAK,EAER,EAAA,QAAA,EAAA,CAAA,KAAK,GAAGC,eAAO,EAAE,EAAE,OAAO,EAAG,QAAA,EAAA,KAAK,GAAS,GAAG,IAAI,EACnDA,cACE,IAAI,EAAC,cAAc,EACnB,CAAC,EAAC,kKAAkK,EAAA,CACpK,CACE,EAAA,CAAA,CAAA;AAEV,CAAC;AACD,qBAAe,YAAY,CAAC,YAAY,CAAC;;;;"}
@@ -0,0 +1,12 @@
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({ viewBox: "0 0 24 24", width: "1em", height: "1em", "aria-labelledby": titleId }, props, { children: [title ? jsx("title", { id: titleId, children: title }) : null, jsx("path", { fill: "currentColor", d: "M6 14h12v-2H6zm0-3h12V9H6zm0-3h12V6H6zm16 14-4-4H4c-.55 0-1.02-.2-1.41-.59S2 16.55 2 16V4c0-.55.2-1.02.59-1.41S3.45 2 4 2h16c.55 0 1.02.2 1.41.59S22 3.45 22 4zM4 16h14.85L20 17.125V4H4z" })] })));
8
+ };
9
+ var IconShareStory1 = generateIcon(SvgComponent);
10
+
11
+ export { IconShareStory1 as default };
12
+ //# sourceMappingURL=IconShareStory1.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconShareStory1.js","sources":["../../../../../generated/v2/generated/v2/web/components/IconShareStory1.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;IAER,QACEA,uBACE,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,qBACK,OAAO,EAAA,EACpB,KAAK,EAER,EAAA,QAAA,EAAA,CAAA,KAAK,GAAGC,eAAO,EAAE,EAAE,OAAO,EAAG,QAAA,EAAA,KAAK,GAAS,GAAG,IAAI,EACnDA,cACE,IAAI,EAAC,cAAc,EACnB,CAAC,EAAC,2LAA2L,EAAA,CAC7L,CACE,EAAA,CAAA,CAAA;AAEV,CAAC;AACD,sBAAe,YAAY,CAAC,YAAY,CAAC;;;;"}
@@ -12,6 +12,7 @@ export { default as IconCalendarclockSolid } from './components/IconCalendarcloc
12
12
  export { default as IconCamera } from './components/IconCamera.js';
13
13
  export { default as IconCart } from './components/IconCart.js';
14
14
  export { default as IconCast } from './components/IconCast.js';
15
+ export { default as IconCategory } from './components/IconCategory.js';
15
16
  export { default as IconCelebrateRecovery } from './components/IconCelebrateRecovery.js';
16
17
  export { default as IconCheckSolid } from './components/IconCheckSolid.js';
17
18
  export { default as IconChecklistSolid } from './components/IconChecklistSolid.js';
@@ -126,6 +127,8 @@ export { default as IconSearchSolid } from './components/IconSearchSolid.js';
126
127
  export { default as IconServeSolid } from './components/IconServeSolid.js';
127
128
  export { default as IconSettingsSolid } from './components/IconSettingsSolid.js';
128
129
  export { default as IconShareSolid } from './components/IconShareSolid.js';
130
+ export { default as IconShareStory } from './components/IconShareStory.js';
131
+ export { default as IconShareStory1 } from './components/IconShareStory1.js';
129
132
  export { default as IconSharestorySolid } from './components/IconSharestorySolid.js';
130
133
  export { default as IconSharingSolid } from './components/IconSharingSolid.js';
131
134
  export { default as IconShieldLight } from './components/IconShieldLight.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;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("../generateIcon").IIconComponentType;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("../generateIcon").IIconComponentType;
2
+ export default _default;
@@ -12,6 +12,7 @@ export { default as IconCalendarclockSolid } from "./components/IconCalendarcloc
12
12
  export { default as IconCamera } from "./components/IconCamera";
13
13
  export { default as IconCart } from "./components/IconCart";
14
14
  export { default as IconCast } from "./components/IconCast";
15
+ export { default as IconCategory } from "./components/IconCategory";
15
16
  export { default as IconCelebrateRecovery } from "./components/IconCelebrateRecovery";
16
17
  export { default as IconCheckSolid } from "./components/IconCheckSolid";
17
18
  export { default as IconChecklistSolid } from "./components/IconChecklistSolid";
@@ -126,6 +127,8 @@ export { default as IconSearchSolid } from "./components/IconSearchSolid";
126
127
  export { default as IconServeSolid } from "./components/IconServeSolid";
127
128
  export { default as IconSettingsSolid } from "./components/IconSettingsSolid";
128
129
  export { default as IconShareSolid } from "./components/IconShareSolid";
130
+ export { default as IconShareStory } from "./components/IconShareStory";
131
+ export { default as IconShareStory1 } from "./components/IconShareStory1";
129
132
  export { default as IconSharestorySolid } from "./components/IconSharestorySolid";
130
133
  export { default as IconSharingSolid } from "./components/IconSharingSolid";
131
134
  export { default as IconShieldLight } from "./components/IconShieldLight";
@@ -13,6 +13,7 @@ export declare const IconCalendarclockSolid: string;
13
13
  export declare const IconCamera: string;
14
14
  export declare const IconCart: string;
15
15
  export declare const IconCast: string;
16
+ export declare const IconCategory: string;
16
17
  export declare const IconCelebrateRecovery: string;
17
18
  export declare const IconCheckSolid: string;
18
19
  export declare const IconChecklistSolid: string;
@@ -127,6 +128,8 @@ export declare const IconSearchSolid: string;
127
128
  export declare const IconServeSolid: string;
128
129
  export declare const IconSettingsSolid: string;
129
130
  export declare const IconShareSolid: string;
131
+ export declare const IconShareStory1: string;
132
+ export declare const IconShareStory: string;
130
133
  export declare const IconSharestorySolid: string;
131
134
  export declare const IconSharingSolid: string;
132
135
  export declare const IconShieldLight: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hc-app-icons",
3
- "version": "2.0.24",
3
+ "version": "2.0.26",
4
4
  "main": "./dist/generated/",
5
5
  "types": "dist/types/index.d.ts",
6
6
  "typesVersions": {