@kollexeo/icons 1.8.0 → 1.9.0

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,10 @@
1
+ import { FC } from 'react';
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ strokeWidth?: number;
7
+ }
8
+ declare const KollexeoKIcon: FC<IconProps>;
9
+
10
+ export { type IconProps, KollexeoKIcon };
@@ -0,0 +1,10 @@
1
+ import { FC } from 'react';
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ strokeWidth?: number;
7
+ }
8
+ declare const KollexeoKIcon: FC<IconProps>;
9
+
10
+ export { type IconProps, KollexeoKIcon };
@@ -0,0 +1,36 @@
1
+ 'use strict';
2
+
3
+ var Svg = require('react-native-svg');
4
+
5
+ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
6
+
7
+ var Svg__default = /*#__PURE__*/_interopDefault(Svg);
8
+
9
+ const React = require("react");
10
+ var KollexeoKIcon = ({
11
+ size = 24,
12
+ color = "currentColor",
13
+ strokeWidth
14
+ }) => /* @__PURE__ */ React.createElement(Svg__default.default, { fill: "none", viewBox: "0 0 24 24", width: size, height: size }, /* @__PURE__ */ React.createElement(
15
+ Svg.Rect,
16
+ {
17
+ width: 18,
18
+ height: 18,
19
+ x: 3,
20
+ y: 3,
21
+ stroke: color,
22
+ strokeWidth: strokeWidth ?? 1.5,
23
+ rx: 5.5
24
+ }
25
+ ), /* @__PURE__ */ React.createElement(
26
+ Svg.Path,
27
+ {
28
+ stroke: color,
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round",
31
+ strokeWidth: strokeWidth ?? 1.5,
32
+ d: "M9.5 7.75v8.5M15 7.75 9.5 12l5.5 4.25"
33
+ }
34
+ ));
35
+
36
+ exports.KollexeoKIcon = KollexeoKIcon;
@@ -0,0 +1,30 @@
1
+ import Svg, { Rect, Path } from 'react-native-svg';
2
+
3
+ const React = require("react");
4
+ var KollexeoKIcon = ({
5
+ size = 24,
6
+ color = "currentColor",
7
+ strokeWidth
8
+ }) => /* @__PURE__ */ React.createElement(Svg, { fill: "none", viewBox: "0 0 24 24", width: size, height: size }, /* @__PURE__ */ React.createElement(
9
+ Rect,
10
+ {
11
+ width: 18,
12
+ height: 18,
13
+ x: 3,
14
+ y: 3,
15
+ stroke: color,
16
+ strokeWidth: strokeWidth ?? 1.5,
17
+ rx: 5.5
18
+ }
19
+ ), /* @__PURE__ */ React.createElement(
20
+ Path,
21
+ {
22
+ stroke: color,
23
+ strokeLinecap: "round",
24
+ strokeLinejoin: "round",
25
+ strokeWidth: strokeWidth ?? 1.5,
26
+ d: "M9.5 7.75v8.5M15 7.75 9.5 12l5.5 4.25"
27
+ }
28
+ ));
29
+
30
+ export { KollexeoKIcon };