@ftdata/f-icons 0.0.7 → 0.0.8
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/dist/Icon/svg/icons.d.ts
CHANGED
|
@@ -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/StatusMenu").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,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 };
|
|
@@ -108,6 +108,7 @@ const INTERFACE = {
|
|
|
108
108
|
"ui info-information": InfoInformation,
|
|
109
109
|
"ui menu-burger-square": MenuBurgerSquare,
|
|
110
110
|
"ui text-edit-a": TextEditA,
|
|
111
|
-
"ui status-menu": StatusMenu
|
|
111
|
+
"ui status-menu": StatusMenu,
|
|
112
|
+
"ui id-square": StatusMenu
|
|
112
113
|
};
|
|
113
114
|
export { INTERFACE };
|