@xaui/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.
- package/dist/calendar.cjs +5 -15
- package/dist/calendar.js +1 -1
- package/dist/{chunk-5367KJ6I.js → chunk-RGAXLVVL.js} +4 -14
- package/dist/index.cjs +5 -15
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/calendar.cjs
CHANGED
|
@@ -37,7 +37,7 @@ module.exports = __toCommonJS(calendar_exports);
|
|
|
37
37
|
// src/icons/calendar.tsx
|
|
38
38
|
var import_react = __toESM(require("react"), 1);
|
|
39
39
|
var import_react_native = require("react-native");
|
|
40
|
-
var import_react_native_svg = require("react-native-svg");
|
|
40
|
+
var import_react_native_svg = __toESM(require("react-native-svg"), 1);
|
|
41
41
|
var AnimatedPath = import_react_native.Animated.createAnimatedComponent(import_react_native_svg.Path);
|
|
42
42
|
var AnimatedCircle = import_react_native.Animated.createAnimatedComponent(import_react_native_svg.Circle);
|
|
43
43
|
var AnimatedRect = import_react_native.Animated.createAnimatedComponent(import_react_native_svg.Rect);
|
|
@@ -190,25 +190,15 @@ var CalendarIcon = ({
|
|
|
190
190
|
...animatedProps
|
|
191
191
|
}
|
|
192
192
|
));
|
|
193
|
-
const renderFilled = () => /* @__PURE__ */ import_react.default.createElement(
|
|
193
|
+
const renderFilled = () => /* @__PURE__ */ import_react.default.createElement(
|
|
194
194
|
AnimatedPath,
|
|
195
195
|
{
|
|
196
196
|
fill: resolvedColor,
|
|
197
197
|
d: "M480 128a64 64 0 0 0-64-64h-16V48.45c0-8.61-6.62-16-15.23-16.43A16 16 0 0 0 368 48v16H144V48.45c0-8.61-6.62-16-15.23-16.43A16 16 0 0 0 112 48v16H96a64 64 0 0 0-64 64v12a4 4 0 0 0 4 4h440a4 4 0 0 0 4-4ZM32 416a64 64 0 0 0 64 64h320a64 64 0 0 0 64-64V179a3 3 0 0 0-3-3H35a3 3 0 0 0-3 3Zm344-208a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m-80-80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m-80-80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m-80-80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24",
|
|
198
198
|
...animatedProps
|
|
199
199
|
}
|
|
200
|
-
)
|
|
201
|
-
const renderDuotone = () => /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement(
|
|
202
|
-
AnimatedCircle,
|
|
203
|
-
{
|
|
204
|
-
cx: 256,
|
|
205
|
-
cy: 256,
|
|
206
|
-
r: 192,
|
|
207
|
-
fill: resolvedColor,
|
|
208
|
-
opacity: 0.3,
|
|
209
|
-
...animatedProps
|
|
210
|
-
}
|
|
211
|
-
), /* @__PURE__ */ import_react.default.createElement(
|
|
200
|
+
);
|
|
201
|
+
const renderDuotone = () => /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement(import_react_native_svg.Circle, { cx: 256, cy: 256, r: 192, fill: resolvedColor, opacity: 0.3 }), /* @__PURE__ */ import_react.default.createElement(
|
|
212
202
|
AnimatedRect,
|
|
213
203
|
{
|
|
214
204
|
width: 416,
|
|
@@ -611,7 +601,7 @@ var CalendarIcon = ({
|
|
|
611
601
|
return renderBaseline();
|
|
612
602
|
}
|
|
613
603
|
};
|
|
614
|
-
return /* @__PURE__ */ import_react.default.createElement(import_react_native_svg.
|
|
604
|
+
return /* @__PURE__ */ import_react.default.createElement(import_react_native_svg.default, { width: size, height: size, viewBox: "0 0 512 512" }, renderVariant());
|
|
615
605
|
};
|
|
616
606
|
// Annotate the CommonJS export names for ESM import in node:
|
|
617
607
|
0 && (module.exports = {
|
package/dist/calendar.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/icons/calendar.tsx
|
|
2
2
|
import React, { useEffect, useMemo, useRef } from "react";
|
|
3
3
|
import { Animated } from "react-native";
|
|
4
|
-
import
|
|
4
|
+
import Svg, { Path, Circle, Rect } from "react-native-svg";
|
|
5
5
|
var AnimatedPath = Animated.createAnimatedComponent(Path);
|
|
6
6
|
var AnimatedCircle = Animated.createAnimatedComponent(Circle);
|
|
7
7
|
var AnimatedRect = Animated.createAnimatedComponent(Rect);
|
|
@@ -154,25 +154,15 @@ var CalendarIcon = ({
|
|
|
154
154
|
...animatedProps
|
|
155
155
|
}
|
|
156
156
|
));
|
|
157
|
-
const renderFilled = () => /* @__PURE__ */ React.createElement(
|
|
157
|
+
const renderFilled = () => /* @__PURE__ */ React.createElement(
|
|
158
158
|
AnimatedPath,
|
|
159
159
|
{
|
|
160
160
|
fill: resolvedColor,
|
|
161
161
|
d: "M480 128a64 64 0 0 0-64-64h-16V48.45c0-8.61-6.62-16-15.23-16.43A16 16 0 0 0 368 48v16H144V48.45c0-8.61-6.62-16-15.23-16.43A16 16 0 0 0 112 48v16H96a64 64 0 0 0-64 64v12a4 4 0 0 0 4 4h440a4 4 0 0 0 4-4ZM32 416a64 64 0 0 0 64 64h320a64 64 0 0 0 64-64V179a3 3 0 0 0-3-3H35a3 3 0 0 0-3 3Zm344-208a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m-80-80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m-80-80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m-80-80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24",
|
|
162
162
|
...animatedProps
|
|
163
163
|
}
|
|
164
|
-
)
|
|
165
|
-
const renderDuotone = () => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
166
|
-
AnimatedCircle,
|
|
167
|
-
{
|
|
168
|
-
cx: 256,
|
|
169
|
-
cy: 256,
|
|
170
|
-
r: 192,
|
|
171
|
-
fill: resolvedColor,
|
|
172
|
-
opacity: 0.3,
|
|
173
|
-
...animatedProps
|
|
174
|
-
}
|
|
175
|
-
), /* @__PURE__ */ React.createElement(
|
|
164
|
+
);
|
|
165
|
+
const renderDuotone = () => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(Circle, { cx: 256, cy: 256, r: 192, fill: resolvedColor, opacity: 0.3 }), /* @__PURE__ */ React.createElement(
|
|
176
166
|
AnimatedRect,
|
|
177
167
|
{
|
|
178
168
|
width: 416,
|
package/dist/index.cjs
CHANGED
|
@@ -12778,7 +12778,7 @@ var CalculatorIcon = ({
|
|
|
12778
12778
|
// src/icons/calendar.tsx
|
|
12779
12779
|
var import_react77 = __toESM(require("react"), 1);
|
|
12780
12780
|
var import_react_native77 = require("react-native");
|
|
12781
|
-
var import_react_native_svg77 = require("react-native-svg");
|
|
12781
|
+
var import_react_native_svg77 = __toESM(require("react-native-svg"), 1);
|
|
12782
12782
|
var AnimatedPath77 = import_react_native77.Animated.createAnimatedComponent(import_react_native_svg77.Path);
|
|
12783
12783
|
var AnimatedCircle46 = import_react_native77.Animated.createAnimatedComponent(import_react_native_svg77.Circle);
|
|
12784
12784
|
var AnimatedRect45 = import_react_native77.Animated.createAnimatedComponent(import_react_native_svg77.Rect);
|
|
@@ -12931,25 +12931,15 @@ var CalendarIcon = ({
|
|
|
12931
12931
|
...animatedProps
|
|
12932
12932
|
}
|
|
12933
12933
|
));
|
|
12934
|
-
const renderFilled = () => /* @__PURE__ */ import_react77.default.createElement(
|
|
12934
|
+
const renderFilled = () => /* @__PURE__ */ import_react77.default.createElement(
|
|
12935
12935
|
AnimatedPath77,
|
|
12936
12936
|
{
|
|
12937
12937
|
fill: resolvedColor,
|
|
12938
12938
|
d: "M480 128a64 64 0 0 0-64-64h-16V48.45c0-8.61-6.62-16-15.23-16.43A16 16 0 0 0 368 48v16H144V48.45c0-8.61-6.62-16-15.23-16.43A16 16 0 0 0 112 48v16H96a64 64 0 0 0-64 64v12a4 4 0 0 0 4 4h440a4 4 0 0 0 4-4ZM32 416a64 64 0 0 0 64 64h320a64 64 0 0 0 64-64V179a3 3 0 0 0-3-3H35a3 3 0 0 0-3 3Zm344-208a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m-80-80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m-80-80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m-80-80a24 24 0 1 1-24 24a24 24 0 0 1 24-24m0 80a24 24 0 1 1-24 24a24 24 0 0 1 24-24",
|
|
12939
12939
|
...animatedProps
|
|
12940
12940
|
}
|
|
12941
|
-
)
|
|
12942
|
-
const renderDuotone = () => /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, /* @__PURE__ */ import_react77.default.createElement(
|
|
12943
|
-
AnimatedCircle46,
|
|
12944
|
-
{
|
|
12945
|
-
cx: 256,
|
|
12946
|
-
cy: 256,
|
|
12947
|
-
r: 192,
|
|
12948
|
-
fill: resolvedColor,
|
|
12949
|
-
opacity: 0.3,
|
|
12950
|
-
...animatedProps
|
|
12951
|
-
}
|
|
12952
|
-
), /* @__PURE__ */ import_react77.default.createElement(
|
|
12941
|
+
);
|
|
12942
|
+
const renderDuotone = () => /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, /* @__PURE__ */ import_react77.default.createElement(import_react_native_svg77.Circle, { cx: 256, cy: 256, r: 192, fill: resolvedColor, opacity: 0.3 }), /* @__PURE__ */ import_react77.default.createElement(
|
|
12953
12943
|
AnimatedRect45,
|
|
12954
12944
|
{
|
|
12955
12945
|
width: 416,
|
|
@@ -13352,7 +13342,7 @@ var CalendarIcon = ({
|
|
|
13352
13342
|
return renderBaseline();
|
|
13353
13343
|
}
|
|
13354
13344
|
};
|
|
13355
|
-
return /* @__PURE__ */ import_react77.default.createElement(import_react_native_svg77.
|
|
13345
|
+
return /* @__PURE__ */ import_react77.default.createElement(import_react_native_svg77.default, { width: size, height: size, viewBox: "0 0 512 512" }, renderVariant());
|
|
13356
13346
|
};
|
|
13357
13347
|
|
|
13358
13348
|
// src/icons/calendar-clear.tsx
|
package/dist/index.js
CHANGED