@ftdata/f-icons 0.0.2 → 0.0.3

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.
@@ -94,6 +94,7 @@ declare const ICONS: {
94
94
  "ui arrow-circle-play": typeof import("./interface/ArrowCirclePlay").default;
95
95
  "ui info-information": typeof import("./interface/InfoInformation").default;
96
96
  "ui menu-burger-square": typeof import("./interface/MenuBurgerSquare").default;
97
+ "ui text-edit-a": typeof import("./interface/TextEditA").default;
97
98
  "fl documents-file-pdf": typeof import("./files/DocumentsFilePdf").default;
98
99
  "fl documents-file-excel-alt": typeof import("./files/DocumentsFileExcelAlt").default;
99
100
  "eng drop-water-renewable-circle": typeof import("./energy/DropWaterRenewableCircle").default;
@@ -30,8 +30,8 @@ function MenuBurgerSquare({ color, size, weight, ...rest }) {
30
30
  strokeLinejoin: "round"
31
31
  }),
32
32
  /*#__PURE__*/ jsx("path", {
33
- "fill-rule": "evenodd",
34
- "clip-rule": "evenodd",
33
+ fillRule: "evenodd",
34
+ clipRule: "evenodd",
35
35
  d: "M18 20H6C4.895 20 4 19.105 4 18V6C4 4.895 4.895 4 6 4H18C19.105 4 20 4.895 20 6V18C20 19.105 19.105 20 18 20Z",
36
36
  stroke: color,
37
37
  strokeWidth: weight,
@@ -0,0 +1,2 @@
1
+ import ICommonIconProps from "../../../../interfaces/ICommonIconProps";
2
+ export default function TextEditA({ color, size, weight, ...rest }: ICommonIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,49 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ function TextEditA({ 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: "M3 4H16",
13
+ stroke: color,
14
+ strokeWidth: weight,
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ }),
18
+ /*#__PURE__*/ jsx("path", {
19
+ d: "M21 20L16 10L11 20",
20
+ stroke: color,
21
+ strokeWidth: weight,
22
+ strokeLinecap: "round",
23
+ strokeLinejoin: "round"
24
+ }),
25
+ /*#__PURE__*/ jsx("path", {
26
+ d: "M12 18H20",
27
+ stroke: color,
28
+ strokeWidth: weight,
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round"
31
+ }),
32
+ /*#__PURE__*/ jsx("path", {
33
+ d: "M3 8H12",
34
+ stroke: color,
35
+ strokeWidth: weight,
36
+ strokeLinecap: "round",
37
+ strokeLinejoin: "round"
38
+ }),
39
+ /*#__PURE__*/ jsx("path", {
40
+ d: "M3 12H8",
41
+ stroke: color,
42
+ strokeWidth: weight,
43
+ strokeLinecap: "round",
44
+ strokeLinejoin: "round"
45
+ })
46
+ ]
47
+ });
48
+ }
49
+ export { TextEditA as default };
@@ -51,6 +51,7 @@ import GridLayoutStacked from "./GridLayoutStacked";
51
51
  import ArrowCirclePlay from "./ArrowCirclePlay";
52
52
  import InfoInformation from "./InfoInformation";
53
53
  import MenuBurgerSquare from "./MenuBurgerSquare";
54
+ import TextEditA from "./TextEditA";
54
55
  export declare const INTERFACE: {
55
56
  "ui grid-layout-add": typeof GridLayoutAdd;
56
57
  "ui dashboard-minimal": typeof DashboardMinimal;
@@ -105,4 +106,5 @@ export declare const INTERFACE: {
105
106
  "ui arrow-circle-play": typeof ArrowCirclePlay;
106
107
  "ui info-information": typeof InfoInformation;
107
108
  "ui menu-burger-square": typeof MenuBurgerSquare;
109
+ "ui text-edit-a": typeof TextEditA;
108
110
  };
@@ -51,6 +51,7 @@ import GridLayoutStacked from "./GridLayoutStacked/index.js";
51
51
  import ArrowCirclePlay from "./ArrowCirclePlay/index.js";
52
52
  import InfoInformation from "./InfoInformation/index.js";
53
53
  import MenuBurgerSquare from "./MenuBurgerSquare/index.js";
54
+ import TextEditA from "./TextEditA/index.js";
54
55
  const INTERFACE = {
55
56
  "ui grid-layout-add": GridLayoutAdd,
56
57
  "ui dashboard-minimal": DashboardMinimal,
@@ -104,6 +105,7 @@ const INTERFACE = {
104
105
  "ui grid-layout-stacked": GridLayoutStacked,
105
106
  "ui arrow-circle-play": ArrowCirclePlay,
106
107
  "ui info-information": InfoInformation,
107
- "ui menu-burger-square": MenuBurgerSquare
108
+ "ui menu-burger-square": MenuBurgerSquare,
109
+ "ui text-edit-a": TextEditA
108
110
  };
109
111
  export { INTERFACE };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ftdata/f-icons",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {