@ftdata/f-icons 0.0.7 → 0.0.9

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.
@@ -126,6 +126,7 @@ declare const ICONS: {
126
126
  "ui menu-burger-square": typeof import("./interface/MenuBurgerSquare").default;
127
127
  "ui text-edit-a": typeof import("./interface/TextEditA").default;
128
128
  "ui status-menu": typeof import("./interface/StatusMenu").default;
129
+ "ui id-square": typeof import("./interface/IdSquare").default;
129
130
  "fl documents-file-pdf": typeof import("./files/DocumentsFilePdf").default;
130
131
  "fl documents-file-excel-alt": typeof import("./files/DocumentsFileExcelAlt").default;
131
132
  "eng drop-water-renewable-circle": typeof import("./energy/DropWaterRenewableCircle").default;
@@ -0,0 +1,2 @@
1
+ import ICommonIconProps from "../../../../interfaces/ICommonIconProps";
2
+ export default function IdSquare({ color, size, weight, ...rest }: ICommonIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,39 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ function IdSquare({ 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: "M8 15V9",
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: "M14.6001 15H11.6001V9H14.6001C15.7051 9 16.6001 9.895 16.6001 11V13C16.6001 14.105 15.7051 15 14.6001 15V15Z",
22
+ stroke: color,
23
+ strokeWidth: weight,
24
+ strokeLinecap: "round",
25
+ strokeLinejoin: "round"
26
+ }),
27
+ /*#__PURE__*/ jsx("path", {
28
+ fillRule: "evenodd",
29
+ clipRule: "evenodd",
30
+ d: "M18.353 21.353H5.64697C3.98997 21.353 2.64697 20.01 2.64697 18.353V5.64697C2.64697 3.98997 3.98997 2.64697 5.64697 2.64697H18.352C20.009 2.64697 21.352 3.98997 21.352 5.64697V18.352C21.353 20.01 20.01 21.353 18.353 21.353V21.353Z",
31
+ stroke: color,
32
+ strokeWidth: weight,
33
+ strokeLinecap: "round",
34
+ strokeLinejoin: "round"
35
+ })
36
+ ]
37
+ });
38
+ }
39
+ export { IdSquare as default };
@@ -53,6 +53,7 @@ import InfoInformation from "./InfoInformation";
53
53
  import MenuBurgerSquare from "./MenuBurgerSquare";
54
54
  import TextEditA from "./TextEditA";
55
55
  import StatusMenu from "./StatusMenu";
56
+ import IdSquare from "./IdSquare";
56
57
  export declare const INTERFACE: {
57
58
  "ui grid-layout-add": typeof GridLayoutAdd;
58
59
  "ui dashboard-minimal": typeof DashboardMinimal;
@@ -109,4 +110,5 @@ export declare const INTERFACE: {
109
110
  "ui menu-burger-square": typeof MenuBurgerSquare;
110
111
  "ui text-edit-a": typeof TextEditA;
111
112
  "ui status-menu": typeof StatusMenu;
113
+ "ui id-square": typeof IdSquare;
112
114
  };
@@ -53,6 +53,7 @@ import InfoInformation from "./InfoInformation/index.js";
53
53
  import MenuBurgerSquare from "./MenuBurgerSquare/index.js";
54
54
  import TextEditA from "./TextEditA/index.js";
55
55
  import StatusMenu from "./StatusMenu/index.js";
56
+ import IdSquare from "./IdSquare/index.js";
56
57
  const INTERFACE = {
57
58
  "ui grid-layout-add": GridLayoutAdd,
58
59
  "ui dashboard-minimal": DashboardMinimal,
@@ -108,6 +109,7 @@ const INTERFACE = {
108
109
  "ui info-information": InfoInformation,
109
110
  "ui menu-burger-square": MenuBurgerSquare,
110
111
  "ui text-edit-a": TextEditA,
111
- "ui status-menu": StatusMenu
112
+ "ui status-menu": StatusMenu,
113
+ "ui id-square": IdSquare
112
114
  };
113
115
  export { INTERFACE };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ftdata/f-icons",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {