hc-app-icons 2.0.10 → 2.0.12
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 +10 -0
- package/dist/generated/v2/icons/camera.svg +1 -0
- package/dist/generated/v2/icons/shield-solid.svg +1 -0
- package/dist/generated/v2/icons/user-circle.svg +1 -0
- package/dist/generated/v2/index.js +3 -0
- package/dist/generated/v2/web/components/IconCamera.js +12 -0
- package/dist/generated/v2/web/components/IconCamera.js.map +1 -0
- package/dist/generated/v2/web/components/IconShieldSolid.js +12 -0
- package/dist/generated/v2/web/components/IconShieldSolid.js.map +1 -0
- package/dist/generated/v2/web/components/IconUserCircle.js +12 -0
- package/dist/generated/v2/web/components/IconUserCircle.js.map +1 -0
- package/dist/generated/v2/web/index.js +3 -0
- package/dist/generated/v2/web/index.js.map +1 -1
- package/dist/types/components/IconCamera.d.ts +2 -0
- package/dist/types/components/IconShieldSolid.d.ts +2 -0
- package/dist/types/components/IconUserCircle.d.ts +2 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/v2/index.d.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg data-name="Layer 1" viewBox="0 0 24 24"><path d="M12 17.5q1.875 0 3.188-1.312Q16.5 14.875 16.5 13t-1.312-3.187T12 8.5 8.813 9.813Q7.499 11.125 7.5 13q0 1.875 1.313 3.188Q10.125 17.5 12 17.5m0-2q-1.05 0-1.775-.725T9.5 13t.725-1.775T12 10.5t1.775.725T14.5 13t-.725 1.775T12 15.5M4 21q-.824 0-1.412-.587A1.93 1.93 0 0 1 2 19V7q0-.824.587-1.412A1.93 1.93 0 0 1 4 5h3.15L9 3h6l1.85 2H20q.824 0 1.413.588Q22 6.175 22 7v12q0 .824-.587 1.413A1.93 1.93 0 0 1 20 21z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg data-name="Layer 1" viewBox="0 0 24 24"><path d="M12 22q-3.476-.875-5.737-3.988Q4 14.9 4 11.1V5l8-3 8 3v6.1q0 3.8-2.262 6.913Q15.475 21.124 12 22"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg data-name="Layer 1" viewBox="0 0 24 24"><path d="M5.85 17.1q1.275-.975 2.85-1.538A9.7 9.7 0 0 1 12 15q1.725 0 3.3.563t2.85 1.537a7.7 7.7 0 0 0 1.363-2.325A7.8 7.8 0 0 0 20 12q0-3.325-2.337-5.662Q15.325 4 12 4T6.338 6.338 4 12q0 1.474.487 2.775.488 1.3 1.363 2.325M12 13q-1.474 0-2.488-1.012Q8.5 10.975 8.5 9.5q0-1.474 1.012-2.487T12 6t2.488 1.013Q15.5 8.026 15.5 9.5t-1.012 2.488Q13.475 13 12 13m0 9a9.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 22"/></svg>
|
|
@@ -10,6 +10,7 @@ export { default as IconBookSolid } from "./icons/book-solid.svg";
|
|
|
10
10
|
export { default as IconCalendarLight } from "./icons/calendar-light.svg";
|
|
11
11
|
export { default as IconCalendarSolid } from "./icons/calendar-solid.svg";
|
|
12
12
|
export { default as IconCalendarclockSolid } from "./icons/calendarclock-solid.svg";
|
|
13
|
+
export { default as IconCamera } from "./icons/camera.svg";
|
|
13
14
|
export { default as IconCast } from "./icons/cast.svg";
|
|
14
15
|
export { default as IconCheckSolid } from "./icons/check-solid.svg";
|
|
15
16
|
export { default as IconChecklistSolid } from "./icons/checklist-solid.svg";
|
|
@@ -108,6 +109,7 @@ export { default as IconShareSolid } from "./icons/share-solid.svg";
|
|
|
108
109
|
export { default as IconSharestorySolid } from "./icons/sharestory-solid.svg";
|
|
109
110
|
export { default as IconSharingSolid } from "./icons/sharing-solid.svg";
|
|
110
111
|
export { default as IconShieldLight } from "./icons/shield-light.svg";
|
|
112
|
+
export { default as IconShieldSolid } from "./icons/shield-solid.svg";
|
|
111
113
|
export { default as IconSpotify } from "./icons/spotify.svg";
|
|
112
114
|
export { default as IconStepsSolid } from "./icons/steps-solid.svg";
|
|
113
115
|
export { default as IconStocksSolid } from "./icons/stocks-solid.svg";
|
|
@@ -117,6 +119,7 @@ export { default as IconTicketSolid } from "./icons/ticket-solid.svg";
|
|
|
117
119
|
export { default as IconTimerSolid } from "./icons/timer-solid.svg";
|
|
118
120
|
export { default as IconToolsSolid } from "./icons/tools-solid.svg";
|
|
119
121
|
export { default as IconTwitter } from "./icons/twitter.svg";
|
|
122
|
+
export { default as IconUserCircle } from "./icons/user-circle.svg";
|
|
120
123
|
export { default as IconUserSolid } from "./icons/user-solid.svg";
|
|
121
124
|
export { default as IconUser2Light } from "./icons/user2-light.svg";
|
|
122
125
|
export { default as IconViewSolid } from "./icons/view-solid.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: "M12 17.5q1.875 0 3.188-1.312Q16.5 14.875 16.5 13t-1.312-3.187T12 8.5 8.813 9.813Q7.499 11.125 7.5 13q0 1.875 1.313 3.188Q10.125 17.5 12 17.5m0-2q-1.05 0-1.775-.725T9.5 13t.725-1.775T12 10.5t1.775.725T14.5 13t-.725 1.775T12 15.5M4 21q-.824 0-1.412-.587A1.93 1.93 0 0 1 2 19V7q0-.824.587-1.412A1.93 1.93 0 0 1 4 5h3.15L9 3h6l1.85 2H20q.824 0 1.413.588Q22 6.175 22 7v12q0 .824-.587 1.413A1.93 1.93 0 0 1 20 21z", fill: "#1c1b1f" })] })));
|
|
8
|
+
};
|
|
9
|
+
var IconCamera = generateIcon(SvgComponent);
|
|
10
|
+
|
|
11
|
+
export { IconCamera as default };
|
|
12
|
+
//# sourceMappingURL=IconCamera.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconCamera.js","sources":["../../../../../generated/v2/generated/v2/web/components/IconCamera.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,yZAAyZ,EAC3Z,IAAI,EAAC,SAAS,EAAA,CACd,CACE,EAAA,CAAA,CAAA;AAEV,CAAC;AACD,iBAAe,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({ "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: "M12 22q-3.476-.875-5.737-3.988Q4 14.9 4 11.1V5l8-3 8 3v6.1q0 3.8-2.262 6.913Q15.475 21.124 12 22", fill: "#1c1b1f" })] })));
|
|
8
|
+
};
|
|
9
|
+
var IconShieldSolid = generateIcon(SvgComponent);
|
|
10
|
+
|
|
11
|
+
export { IconShieldSolid as default };
|
|
12
|
+
//# sourceMappingURL=IconShieldSolid.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconShieldSolid.js","sources":["../../../../../generated/v2/generated/v2/web/components/IconShieldSolid.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,kGAAkG,EACpG,IAAI,EAAC,SAAS,EAAA,CACd,CACE,EAAA,CAAA,CAAA;AAEV,CAAC;AACD,sBAAe,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({ "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: "M5.85 17.1q1.275-.975 2.85-1.538A9.7 9.7 0 0 1 12 15q1.725 0 3.3.563t2.85 1.537a7.7 7.7 0 0 0 1.363-2.325A7.8 7.8 0 0 0 20 12q0-3.325-2.337-5.662Q15.325 4 12 4T6.338 6.338 4 12q0 1.474.487 2.775.488 1.3 1.363 2.325M12 13q-1.474 0-2.488-1.012Q8.5 10.975 8.5 9.5q0-1.474 1.012-2.487T12 6t2.488 1.013Q15.5 8.026 15.5 9.5t-1.012 2.488Q13.475 13 12 13m0 9a9.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 22", fill: "#1c1b1f" })] })));
|
|
8
|
+
};
|
|
9
|
+
var IconUserCircle = generateIcon(SvgComponent);
|
|
10
|
+
|
|
11
|
+
export { IconUserCircle as default };
|
|
12
|
+
//# sourceMappingURL=IconUserCircle.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconUserCircle.js","sources":["../../../../../generated/v2/generated/v2/web/components/IconUserCircle.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,ssBAAssB,EACxsB,IAAI,EAAC,SAAS,EAAA,CACd,CACE,EAAA,CAAA,CAAA;AAEV,CAAC;AACD,qBAAe,YAAY,CAAC,YAAY,CAAC;;;;"}
|
|
@@ -9,6 +9,7 @@ export { default as IconBookSolid } from './components/IconBookSolid.js';
|
|
|
9
9
|
export { default as IconCalendarLight } from './components/IconCalendarLight.js';
|
|
10
10
|
export { default as IconCalendarSolid } from './components/IconCalendarSolid.js';
|
|
11
11
|
export { default as IconCalendarclockSolid } from './components/IconCalendarclockSolid.js';
|
|
12
|
+
export { default as IconCamera } from './components/IconCamera.js';
|
|
12
13
|
export { default as IconCast } from './components/IconCast.js';
|
|
13
14
|
export { default as IconCheckSolid } from './components/IconCheckSolid.js';
|
|
14
15
|
export { default as IconChecklistSolid } from './components/IconChecklistSolid.js';
|
|
@@ -107,6 +108,7 @@ export { default as IconShareSolid } from './components/IconShareSolid.js';
|
|
|
107
108
|
export { default as IconSharestorySolid } from './components/IconSharestorySolid.js';
|
|
108
109
|
export { default as IconSharingSolid } from './components/IconSharingSolid.js';
|
|
109
110
|
export { default as IconShieldLight } from './components/IconShieldLight.js';
|
|
111
|
+
export { default as IconShieldSolid } from './components/IconShieldSolid.js';
|
|
110
112
|
export { default as IconSpotify } from './components/IconSpotify.js';
|
|
111
113
|
export { default as IconStepsSolid } from './components/IconStepsSolid.js';
|
|
112
114
|
export { default as IconStocksSolid } from './components/IconStocksSolid.js';
|
|
@@ -117,6 +119,7 @@ export { default as IconTimerSolid } from './components/IconTimerSolid.js';
|
|
|
117
119
|
export { default as IconToolsSolid } from './components/IconToolsSolid.js';
|
|
118
120
|
export { default as IconTwitter } from './components/IconTwitter.js';
|
|
119
121
|
export { default as IconUser2Light } from './components/IconUser2Light.js';
|
|
122
|
+
export { default as IconUserCircle } from './components/IconUserCircle.js';
|
|
120
123
|
export { default as IconUserSolid } from './components/IconUserSolid.js';
|
|
121
124
|
export { default as IconViewSolid } from './components/IconViewSolid.js';
|
|
122
125
|
export { default as IconViewcampusSolid } from './components/IconViewcampusSolid.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export { default as IconBookSolid } from "./components/IconBookSolid";
|
|
|
9
9
|
export { default as IconCalendarLight } from "./components/IconCalendarLight";
|
|
10
10
|
export { default as IconCalendarSolid } from "./components/IconCalendarSolid";
|
|
11
11
|
export { default as IconCalendarclockSolid } from "./components/IconCalendarclockSolid";
|
|
12
|
+
export { default as IconCamera } from "./components/IconCamera";
|
|
12
13
|
export { default as IconCast } from "./components/IconCast";
|
|
13
14
|
export { default as IconCheckSolid } from "./components/IconCheckSolid";
|
|
14
15
|
export { default as IconChecklistSolid } from "./components/IconChecklistSolid";
|
|
@@ -107,6 +108,7 @@ export { default as IconShareSolid } from "./components/IconShareSolid";
|
|
|
107
108
|
export { default as IconSharestorySolid } from "./components/IconSharestorySolid";
|
|
108
109
|
export { default as IconSharingSolid } from "./components/IconSharingSolid";
|
|
109
110
|
export { default as IconShieldLight } from "./components/IconShieldLight";
|
|
111
|
+
export { default as IconShieldSolid } from "./components/IconShieldSolid";
|
|
110
112
|
export { default as IconSpotify } from "./components/IconSpotify";
|
|
111
113
|
export { default as IconStepsSolid } from "./components/IconStepsSolid";
|
|
112
114
|
export { default as IconStocksSolid } from "./components/IconStocksSolid";
|
|
@@ -117,6 +119,7 @@ export { default as IconTimerSolid } from "./components/IconTimerSolid";
|
|
|
117
119
|
export { default as IconToolsSolid } from "./components/IconToolsSolid";
|
|
118
120
|
export { default as IconTwitter } from "./components/IconTwitter";
|
|
119
121
|
export { default as IconUser2Light } from "./components/IconUser2Light";
|
|
122
|
+
export { default as IconUserCircle } from "./components/IconUserCircle";
|
|
120
123
|
export { default as IconUserSolid } from "./components/IconUserSolid";
|
|
121
124
|
export { default as IconViewSolid } from "./components/IconViewSolid";
|
|
122
125
|
export { default as IconViewcampusSolid } from "./components/IconViewcampusSolid";
|
package/dist/types/v2/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare const IconBookSolid: string;
|
|
|
10
10
|
export declare const IconCalendarLight: string;
|
|
11
11
|
export declare const IconCalendarSolid: string;
|
|
12
12
|
export declare const IconCalendarclockSolid: string;
|
|
13
|
+
export declare const IconCamera: string;
|
|
13
14
|
export declare const IconCast: string;
|
|
14
15
|
export declare const IconCheckSolid: string;
|
|
15
16
|
export declare const IconChecklistSolid: string;
|
|
@@ -108,6 +109,7 @@ export declare const IconShareSolid: string;
|
|
|
108
109
|
export declare const IconSharestorySolid: string;
|
|
109
110
|
export declare const IconSharingSolid: string;
|
|
110
111
|
export declare const IconShieldLight: string;
|
|
112
|
+
export declare const IconShieldSolid: string;
|
|
111
113
|
export declare const IconSpotify: string;
|
|
112
114
|
export declare const IconStepsSolid: string;
|
|
113
115
|
export declare const IconStocksSolid: string;
|
|
@@ -117,6 +119,7 @@ export declare const IconTicketSolid: string;
|
|
|
117
119
|
export declare const IconTimerSolid: string;
|
|
118
120
|
export declare const IconToolsSolid: string;
|
|
119
121
|
export declare const IconTwitter: string;
|
|
122
|
+
export declare const IconUserCircle: string;
|
|
120
123
|
export declare const IconUserSolid: string;
|
|
121
124
|
export declare const IconUser2Light: string;
|
|
122
125
|
export declare const IconViewSolid: string;
|