@ftdata/f-icons 0.0.6 → 0.0.7

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.
@@ -0,0 +1,2 @@
1
+ import ICommonIconProps from "../../../../interfaces/ICommonIconProps";
2
+ export default function BusinessChartPie({ color, size, weight, ...rest }: ICommonIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,35 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ function BusinessChartPie({ color, size, weight, ...rest }) {
3
+ return /*#__PURE__*/ jsxs("svg", {
4
+ width: size,
5
+ height: size,
6
+ viewBox: "0 0 24 24",
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ ...rest,
10
+ children: [
11
+ /*#__PURE__*/ jsx("path", {
12
+ d: "M12.0002 3V11.743L5.63623 18.364",
13
+ stroke: color,
14
+ strokeWidth: weight,
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ }),
18
+ /*#__PURE__*/ jsx("path", {
19
+ d: "M3.8999 8.07996L11.9999 11.74",
20
+ stroke: color,
21
+ strokeWidth: weight,
22
+ strokeLinecap: "round",
23
+ strokeLinejoin: "round"
24
+ }),
25
+ /*#__PURE__*/ jsx("path", {
26
+ d: "M18.3639 5.63604C21.8787 9.15076 21.8787 14.8492 18.3639 18.3639C14.8492 21.8787 9.15074 21.8787 5.63604 18.3639C2.12132 14.8492 2.12132 9.15074 5.63604 5.63604C9.15076 2.12132 14.8492 2.12132 18.3639 5.63604",
27
+ stroke: color,
28
+ strokeWidth: weight,
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round"
31
+ })
32
+ ]
33
+ });
34
+ }
35
+ export { BusinessChartPie as default };
@@ -2,9 +2,11 @@ import Chart19 from "./Chart19";
2
2
  import SuitcasePortfolio from "./SuitcasePortfolio";
3
3
  import BusinessChartMetrics from "./BusinessChartMetrics";
4
4
  import ArrowGrowth from "./ArrowGrowth";
5
+ import BusinessChartPie from "./BusinessChartPie";
5
6
  export declare const BUSINESS_AND_PRODUCTS: {
6
7
  "bp chart-19": typeof Chart19;
7
8
  "bp suitcase-portfolio": typeof SuitcasePortfolio;
8
9
  "bp business-chart-metrics": typeof BusinessChartMetrics;
9
10
  "bp arrow-growth": typeof ArrowGrowth;
11
+ "bp business-chart-pie": typeof BusinessChartPie;
10
12
  };
@@ -2,10 +2,12 @@ import Chart19 from "./Chart19/index.js";
2
2
  import SuitcasePortfolio from "./SuitcasePortfolio/index.js";
3
3
  import BusinessChartMetrics from "./BusinessChartMetrics/index.js";
4
4
  import ArrowGrowth from "./ArrowGrowth/index.js";
5
+ import BusinessChartPie from "./BusinessChartPie/index.js";
5
6
  const BUSINESS_AND_PRODUCTS = {
6
7
  "bp chart-19": Chart19,
7
8
  "bp suitcase-portfolio": SuitcasePortfolio,
8
9
  "bp business-chart-metrics": BusinessChartMetrics,
9
- "bp arrow-growth": ArrowGrowth
10
+ "bp arrow-growth": ArrowGrowth,
11
+ "bp business-chart-pie": BusinessChartPie
10
12
  };
11
13
  export { BUSINESS_AND_PRODUCTS };
@@ -30,6 +30,7 @@ declare const ICONS: {
30
30
  "nmk van": typeof import("./neo-markers/Van").default;
31
31
  "usr user-profile-10": typeof import("./user/UserProfile10").default;
32
32
  "usr group-user": typeof import("./user/GroupUser").default;
33
+ "usr user-profile-shield": typeof import("./user/UserProfileShield").default;
33
34
  "trs truck-cargo": typeof import("./transportation/TruckCargo").default;
34
35
  "trs car": typeof import("./transportation/Car").default;
35
36
  "trs train": typeof import("./transportation/Train").default;
@@ -124,6 +125,7 @@ declare const ICONS: {
124
125
  "ui info-information": typeof import("./interface/InfoInformation").default;
125
126
  "ui menu-burger-square": typeof import("./interface/MenuBurgerSquare").default;
126
127
  "ui text-edit-a": typeof import("./interface/TextEditA").default;
128
+ "ui status-menu": typeof import("./interface/StatusMenu").default;
127
129
  "fl documents-file-pdf": typeof import("./files/DocumentsFilePdf").default;
128
130
  "fl documents-file-excel-alt": typeof import("./files/DocumentsFileExcelAlt").default;
129
131
  "eng drop-water-renewable-circle": typeof import("./energy/DropWaterRenewableCircle").default;
@@ -150,6 +152,7 @@ declare const ICONS: {
150
152
  "bp suitcase-portfolio": typeof import("./business-and-products/SuitcasePortfolio").default;
151
153
  "bp business-chart-metrics": typeof import("./business-and-products/BusinessChartMetrics").default;
152
154
  "bp arrow-growth": typeof import("./business-and-products/ArrowGrowth").default;
155
+ "bp business-chart-pie": typeof import("./business-and-products/BusinessChartPie").default;
153
156
  "bld hotel-building": typeof import("./buildings/HotelBuilding").default;
154
157
  "bld building": typeof import("./buildings/Building").default;
155
158
  "arw arrow-down": typeof import("./arrows/ArrowDown").default;
@@ -0,0 +1,2 @@
1
+ import ICommonIconProps from "../../../../interfaces/ICommonIconProps";
2
+ export default function StatusMenu({ color, size, weight, ...rest }: ICommonIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,42 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ function StatusMenu({ color, size, weight, ...rest }) {
3
+ return /*#__PURE__*/ jsxs("svg", {
4
+ width: size,
5
+ height: size,
6
+ viewBox: "0 0 24 24",
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ ...rest,
10
+ children: [
11
+ /*#__PURE__*/ jsx("path", {
12
+ d: "M15.9916 8.00885C18.1961 10.2134 18.1961 13.7876 15.9916 15.9921C13.7871 18.1966 10.2129 18.1966 8.00836 15.9921C5.80385 13.7876 5.80385 10.2134 8.00836 8.00885C10.2129 5.80434 13.7871 5.80434 15.9916 8.00885",
13
+ stroke: color,
14
+ strokeWidth: weight,
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ }),
18
+ /*#__PURE__*/ jsx("path", {
19
+ d: "M8.61278 20.3701C6.80778 19.6441 5.22378 18.3351 4.17478 16.5191C3.14778 14.7411 2.80378 12.7611 3.04678 10.8711",
20
+ stroke: color,
21
+ strokeWidth: weight,
22
+ strokeLinecap: "round",
23
+ strokeLinejoin: "round"
24
+ }),
25
+ /*#__PURE__*/ jsx("path", {
26
+ d: "M6.44824 4.87991C7.97924 3.67991 9.90524 2.96191 12.0022 2.96191C14.0552 2.96191 15.9422 3.65391 17.4572 4.80891",
27
+ stroke: color,
28
+ strokeWidth: weight,
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round"
31
+ }),
32
+ /*#__PURE__*/ jsx("path", {
33
+ d: "M15.3911 20.3701C17.1961 19.6441 18.7801 18.3351 19.8291 16.5191C20.8561 14.7411 21.2001 12.7611 20.9571 10.8711",
34
+ stroke: color,
35
+ strokeWidth: weight,
36
+ strokeLinecap: "round",
37
+ strokeLinejoin: "round"
38
+ })
39
+ ]
40
+ });
41
+ }
42
+ export { StatusMenu as default };
@@ -52,6 +52,7 @@ import ArrowCirclePlay from "./ArrowCirclePlay";
52
52
  import InfoInformation from "./InfoInformation";
53
53
  import MenuBurgerSquare from "./MenuBurgerSquare";
54
54
  import TextEditA from "./TextEditA";
55
+ import StatusMenu from "./StatusMenu";
55
56
  export declare const INTERFACE: {
56
57
  "ui grid-layout-add": typeof GridLayoutAdd;
57
58
  "ui dashboard-minimal": typeof DashboardMinimal;
@@ -107,4 +108,5 @@ export declare const INTERFACE: {
107
108
  "ui info-information": typeof InfoInformation;
108
109
  "ui menu-burger-square": typeof MenuBurgerSquare;
109
110
  "ui text-edit-a": typeof TextEditA;
111
+ "ui status-menu": typeof StatusMenu;
110
112
  };
@@ -52,6 +52,7 @@ import ArrowCirclePlay from "./ArrowCirclePlay/index.js";
52
52
  import InfoInformation from "./InfoInformation/index.js";
53
53
  import MenuBurgerSquare from "./MenuBurgerSquare/index.js";
54
54
  import TextEditA from "./TextEditA/index.js";
55
+ import StatusMenu from "./StatusMenu/index.js";
55
56
  const INTERFACE = {
56
57
  "ui grid-layout-add": GridLayoutAdd,
57
58
  "ui dashboard-minimal": DashboardMinimal,
@@ -106,6 +107,7 @@ const INTERFACE = {
106
107
  "ui arrow-circle-play": ArrowCirclePlay,
107
108
  "ui info-information": InfoInformation,
108
109
  "ui menu-burger-square": MenuBurgerSquare,
109
- "ui text-edit-a": TextEditA
110
+ "ui text-edit-a": TextEditA,
111
+ "ui status-menu": StatusMenu
110
112
  };
111
113
  export { INTERFACE };
@@ -0,0 +1,2 @@
1
+ import ICommonIconProps from "../../../../interfaces/ICommonIconProps";
2
+ export default function UserProfileShield({ color, size, weight, ...rest }: ICommonIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,37 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ function UserProfileShield({ color, size, weight, ...rest }) {
3
+ return /*#__PURE__*/ jsxs("svg", {
4
+ width: size,
5
+ height: size,
6
+ viewBox: "0 0 24 24",
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ ...rest,
10
+ children: [
11
+ /*#__PURE__*/ jsx("path", {
12
+ d: "M11.9998 6.99805C13.2273 6.99805 14.2227 7.99346 14.2227 9.22097C14.2227 10.4485 13.2273 11.4439 11.9998 11.4439C10.7723 11.4439 9.77686 10.4495 9.77686 9.22097C9.77686 7.99246 10.7723 6.99805 11.9998 6.99805",
13
+ stroke: color,
14
+ strokeWidth: weight,
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ }),
18
+ /*#__PURE__*/ jsx("path", {
19
+ fillRule: "evenodd",
20
+ clipRule: "evenodd",
21
+ d: "M20.0032 11.2418C20.0032 15.6116 16.8449 19.7073 12.5201 20.9318C12.182 21.0278 11.8178 21.0278 11.4797 20.9318C7.1549 19.7083 3.99658 15.6116 3.99658 11.2418V7.21209C3.99658 6.39975 4.48779 5.66744 5.2401 5.36032L10.1061 3.36949C11.3206 2.87228 12.6812 2.87228 13.8947 3.36949L18.7607 5.36032C19.512 5.66744 20.0032 6.39975 20.0032 7.21209V11.2418Z",
22
+ stroke: color,
23
+ strokeWidth: weight,
24
+ strokeLinecap: "round",
25
+ strokeLinejoin: "round"
26
+ }),
27
+ /*#__PURE__*/ jsx("path", {
28
+ d: "M16.0014 15.0015C15.8853 14.7084 15.7043 14.4463 15.4732 14.2322V14.2322C15.082 13.8701 14.5718 13.668 14.0386 13.668C13.1492 13.668 10.8512 13.668 9.96186 13.668C9.42864 13.668 8.91743 13.8701 8.52627 14.2322V14.2322C8.29517 14.4463 8.1151 14.7084 7.99805 15.0015",
29
+ stroke: color,
30
+ strokeWidth: weight,
31
+ strokeLinecap: "round",
32
+ strokeLinejoin: "round"
33
+ })
34
+ ]
35
+ });
36
+ }
37
+ export { UserProfileShield as default };
@@ -1,6 +1,8 @@
1
1
  import UserProfile10 from "./UserProfile10";
2
2
  import GroupUser from "./GroupUser";
3
+ import UserProfileShield from "./UserProfileShield";
3
4
  export declare const USER: {
4
5
  "usr user-profile-10": typeof UserProfile10;
5
6
  "usr group-user": typeof GroupUser;
7
+ "usr user-profile-shield": typeof UserProfileShield;
6
8
  };
@@ -1,7 +1,9 @@
1
1
  import UserProfile10 from "./UserProfile10/index.js";
2
2
  import GroupUser from "./GroupUser/index.js";
3
+ import UserProfileShield from "./UserProfileShield/index.js";
3
4
  const USER = {
4
5
  "usr user-profile-10": UserProfile10,
5
- "usr group-user": GroupUser
6
+ "usr group-user": GroupUser,
7
+ "usr user-profile-shield": UserProfileShield
6
8
  };
7
9
  export { USER };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ftdata/f-icons",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {