@marigold/icons 0.5.0 → 0.6.1
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/LICENSE +21 -0
- package/dist/index.d.ts +5 -6
- package/dist/index.js +16 -28
- package/dist/index.mjs +6 -11
- package/package.json +5 -4
- package/CHANGELOG.md +0 -71
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 Marigold UI
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { SVGProps } from '@marigold/system';
|
|
2
|
+
|
|
1
3
|
declare const Cancel: ({ className, ...props }: {
|
|
2
4
|
[x: string]: any;
|
|
3
5
|
className?: string | undefined;
|
|
@@ -33,7 +35,7 @@ declare const HighlightOff: ({ className, ...props }: {
|
|
|
33
35
|
className?: string | undefined;
|
|
34
36
|
}) => JSX.Element;
|
|
35
37
|
|
|
36
|
-
declare const
|
|
38
|
+
declare const Picture: ({ className, ...props }: {
|
|
37
39
|
[x: string]: any;
|
|
38
40
|
className?: string | undefined;
|
|
39
41
|
}) => JSX.Element;
|
|
@@ -178,10 +180,7 @@ declare const EventDate: ({ className, ...props }: {
|
|
|
178
180
|
className?: string | undefined;
|
|
179
181
|
}) => JSX.Element;
|
|
180
182
|
|
|
181
|
-
declare const Exclamation: (
|
|
182
|
-
[x: string]: any;
|
|
183
|
-
className?: string | undefined;
|
|
184
|
-
}) => JSX.Element;
|
|
183
|
+
declare const Exclamation: (props: SVGProps) => JSX.Element;
|
|
185
184
|
|
|
186
185
|
declare const Feedback: ({ className, ...props }: {
|
|
187
186
|
[x: string]: any;
|
|
@@ -523,4 +522,4 @@ declare const User: ({ className, ...props }: {
|
|
|
523
522
|
className?: string | undefined;
|
|
524
523
|
}) => JSX.Element;
|
|
525
524
|
|
|
526
|
-
export { Accessible, Add, ArrowDown, ArrowDownA, ArrowLeft, ArrowLeftA, ArrowRight, ArrowRightA, ArrowUp, ArrowUpA, AutoRenew, Banned, BurgerMenu, Bus, Calendar, Camera, Cancel, Cart, Check, CircleChecked, CircleUnchecked, Clock, Close, CreditCard, Crop, Deal, Delete, DesignTicket, Direction, Edit, Email, EventDate, Exclamation, ExternalLink, Facebook, Feedback, Filter, Food, FormatBold, FormatItalic, FormatSize, GiftCard, Globe, Google, Group, HighlightOff, Home, IconMore, Id,
|
|
525
|
+
export { Accessible, Add, ArrowDown, ArrowDownA, ArrowLeft, ArrowLeftA, ArrowRight, ArrowRightA, ArrowUp, ArrowUpA, AutoRenew, Banned, BurgerMenu, Bus, Calendar, Camera, Cancel, Cart, Check, CircleChecked, CircleUnchecked, Clock, Close, CreditCard, Crop, Deal, Delete, DesignTicket, Direction, Edit, Email, EventDate, Exclamation, ExternalLink, Facebook, Feedback, Filter, Food, FormatBold, FormatItalic, FormatSize, GiftCard, Globe, Google, Group, HighlightOff, Home, IconMore, Id, Info, Instagram, Location, Lock, LockOpen, Marker, Membership, MobilePhone, Notification, Parking, Pause, PauseAlt, Phone, Pickup, Picture, Play, PlayAlt, Price, Print, Remove, Required, Resale, ResaleEdit, ResaleLogbook, RotateLeft, RotateRight, Save, Scanner, Search, Seat, Selling, SettingDots, Share, SmilieDissatisfied, SmilieNeutral, SmilieSatisfied, SmilieVeryDissatisfied, SmilieVerySatisfied, Sort, SortDown, SortUp, Spinner, SquareChecked, SquareUnchecked, Star, Stop, Thumb, Ticket, TicketInsurance, Truck, Turnstile, Twitter, Underlined, User, Whatsapp, Zoom };
|
package/dist/index.js
CHANGED
|
@@ -18,7 +18,6 @@ var __spreadValues = (a, b) => {
|
|
|
18
18
|
}
|
|
19
19
|
return a;
|
|
20
20
|
};
|
|
21
|
-
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
|
|
22
21
|
var __objRest = (source, exclude) => {
|
|
23
22
|
var target = {};
|
|
24
23
|
for (var prop in source)
|
|
@@ -35,22 +34,16 @@ var __export = (target, all) => {
|
|
|
35
34
|
for (var name in all)
|
|
36
35
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
37
36
|
};
|
|
38
|
-
var
|
|
39
|
-
if (
|
|
40
|
-
for (let key of __getOwnPropNames(
|
|
41
|
-
if (!__hasOwnProp.call(
|
|
42
|
-
__defProp(
|
|
37
|
+
var __copyProps = (to, from, except, desc) => {
|
|
38
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
39
|
+
for (let key of __getOwnPropNames(from))
|
|
40
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
41
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
43
42
|
}
|
|
44
|
-
return
|
|
45
|
-
};
|
|
46
|
-
var __toESM = (module2, isNodeMode) => {
|
|
47
|
-
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
|
|
43
|
+
return to;
|
|
48
44
|
};
|
|
49
|
-
var
|
|
50
|
-
|
|
51
|
-
return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
|
|
52
|
-
};
|
|
53
|
-
})(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
|
|
45
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
46
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
54
47
|
|
|
55
48
|
// src/index.ts
|
|
56
49
|
var src_exports = {};
|
|
@@ -104,7 +97,6 @@ __export(src_exports, {
|
|
|
104
97
|
Home: () => Home,
|
|
105
98
|
IconMore: () => IconMore,
|
|
106
99
|
Id: () => Id,
|
|
107
|
-
Image: () => Image,
|
|
108
100
|
Info: () => Info,
|
|
109
101
|
Instagram: () => Instagram,
|
|
110
102
|
Location: () => Location,
|
|
@@ -119,6 +111,7 @@ __export(src_exports, {
|
|
|
119
111
|
PauseAlt: () => PauseAlt,
|
|
120
112
|
Phone: () => Phone,
|
|
121
113
|
Pickup: () => Pickup,
|
|
114
|
+
Picture: () => Picture,
|
|
122
115
|
Play: () => Play,
|
|
123
116
|
PlayAlt: () => PlayAlt,
|
|
124
117
|
Price: () => Price,
|
|
@@ -161,6 +154,7 @@ __export(src_exports, {
|
|
|
161
154
|
Whatsapp: () => Whatsapp,
|
|
162
155
|
Zoom: () => Zoom
|
|
163
156
|
});
|
|
157
|
+
module.exports = __toCommonJS(src_exports);
|
|
164
158
|
|
|
165
159
|
// src/action/Cancel.tsx
|
|
166
160
|
var import_react = __toESM(require("react"));
|
|
@@ -248,10 +242,10 @@ var HighlightOff = (_a) => {
|
|
|
248
242
|
}));
|
|
249
243
|
};
|
|
250
244
|
|
|
251
|
-
// src/action/
|
|
245
|
+
// src/action/Picture.tsx
|
|
252
246
|
var import_react8 = __toESM(require("react"));
|
|
253
247
|
var import_system8 = require("@marigold/system");
|
|
254
|
-
var
|
|
248
|
+
var Picture = (_a) => {
|
|
255
249
|
var _b = _a, { className = "" } = _b, props = __objRest(_b, ["className"]);
|
|
256
250
|
return /* @__PURE__ */ import_react8.default.createElement(import_system8.SVG, __spreadValues({
|
|
257
251
|
className
|
|
@@ -604,14 +598,9 @@ var EventDate = (_a) => {
|
|
|
604
598
|
// src/info/Exclamation.tsx
|
|
605
599
|
var import_react37 = __toESM(require("react"));
|
|
606
600
|
var import_system37 = require("@marigold/system");
|
|
607
|
-
var Exclamation = (
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
className
|
|
611
|
-
}, props), /* @__PURE__ */ import_react37.default.createElement("path", {
|
|
612
|
-
d: "M2.25 20.3097H21.75L12 3.46875L2.25 20.3097ZM12.8864 17.2606H11.1136V15.4879H12.8864V17.2606ZM12.8864 13.7151H11.1136V10.1697H12.8864V13.7151Z"
|
|
613
|
-
}));
|
|
614
|
-
};
|
|
601
|
+
var Exclamation = (props) => /* @__PURE__ */ import_react37.default.createElement(import_system37.SVG, __spreadValues({}, props), /* @__PURE__ */ import_react37.default.createElement("path", {
|
|
602
|
+
d: "M2.25 20.3097H21.75L12 3.46875L2.25 20.3097ZM12.8864 17.2606H11.1136V15.4879H12.8864V17.2606ZM12.8864 13.7151H11.1136V10.1697H12.8864V13.7151Z"
|
|
603
|
+
}));
|
|
615
604
|
|
|
616
605
|
// src/info/Feedback.tsx
|
|
617
606
|
var import_react38 = __toESM(require("react"));
|
|
@@ -1470,7 +1459,6 @@ var User = (_a) => {
|
|
|
1470
1459
|
d: "M16.5 7.5C16.5 9.98625 14.4862 12 12 12C9.51375 12 7.5 9.98625 7.5 7.5C7.5 5.01375 9.51375 3 12 3C14.4862 3 16.5 5.01375 16.5 7.5ZM3 18.75C3 15.7575 8.99625 14.25 12 14.25C15.0037 14.25 21 15.7575 21 18.75V21H3V18.75Z"
|
|
1471
1460
|
}));
|
|
1472
1461
|
};
|
|
1473
|
-
module.exports = __toCommonJS(src_exports);
|
|
1474
1462
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1475
1463
|
0 && (module.exports = {
|
|
1476
1464
|
Accessible,
|
|
@@ -1522,7 +1510,6 @@ module.exports = __toCommonJS(src_exports);
|
|
|
1522
1510
|
Home,
|
|
1523
1511
|
IconMore,
|
|
1524
1512
|
Id,
|
|
1525
|
-
Image,
|
|
1526
1513
|
Info,
|
|
1527
1514
|
Instagram,
|
|
1528
1515
|
Location,
|
|
@@ -1537,6 +1524,7 @@ module.exports = __toCommonJS(src_exports);
|
|
|
1537
1524
|
PauseAlt,
|
|
1538
1525
|
Phone,
|
|
1539
1526
|
Pickup,
|
|
1527
|
+
Picture,
|
|
1540
1528
|
Play,
|
|
1541
1529
|
PlayAlt,
|
|
1542
1530
|
Price,
|
package/dist/index.mjs
CHANGED
|
@@ -113,10 +113,10 @@ var HighlightOff = (_a) => {
|
|
|
113
113
|
}));
|
|
114
114
|
};
|
|
115
115
|
|
|
116
|
-
// src/action/
|
|
116
|
+
// src/action/Picture.tsx
|
|
117
117
|
import React8 from "react";
|
|
118
118
|
import { SVG as SVG8 } from "@marigold/system";
|
|
119
|
-
var
|
|
119
|
+
var Picture = (_a) => {
|
|
120
120
|
var _b = _a, { className = "" } = _b, props = __objRest(_b, ["className"]);
|
|
121
121
|
return /* @__PURE__ */ React8.createElement(SVG8, __spreadValues({
|
|
122
122
|
className
|
|
@@ -469,14 +469,9 @@ var EventDate = (_a) => {
|
|
|
469
469
|
// src/info/Exclamation.tsx
|
|
470
470
|
import React37 from "react";
|
|
471
471
|
import { SVG as SVG37 } from "@marigold/system";
|
|
472
|
-
var Exclamation = (
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
className
|
|
476
|
-
}, props), /* @__PURE__ */ React37.createElement("path", {
|
|
477
|
-
d: "M2.25 20.3097H21.75L12 3.46875L2.25 20.3097ZM12.8864 17.2606H11.1136V15.4879H12.8864V17.2606ZM12.8864 13.7151H11.1136V10.1697H12.8864V13.7151Z"
|
|
478
|
-
}));
|
|
479
|
-
};
|
|
472
|
+
var Exclamation = (props) => /* @__PURE__ */ React37.createElement(SVG37, __spreadValues({}, props), /* @__PURE__ */ React37.createElement("path", {
|
|
473
|
+
d: "M2.25 20.3097H21.75L12 3.46875L2.25 20.3097ZM12.8864 17.2606H11.1136V15.4879H12.8864V17.2606ZM12.8864 13.7151H11.1136V10.1697H12.8864V13.7151Z"
|
|
474
|
+
}));
|
|
480
475
|
|
|
481
476
|
// src/info/Feedback.tsx
|
|
482
477
|
import React38 from "react";
|
|
@@ -1385,7 +1380,6 @@ export {
|
|
|
1385
1380
|
Home,
|
|
1386
1381
|
IconMore,
|
|
1387
1382
|
Id,
|
|
1388
|
-
Image,
|
|
1389
1383
|
Info,
|
|
1390
1384
|
Instagram,
|
|
1391
1385
|
Location,
|
|
@@ -1400,6 +1394,7 @@ export {
|
|
|
1400
1394
|
PauseAlt,
|
|
1401
1395
|
Phone,
|
|
1402
1396
|
Pickup,
|
|
1397
|
+
Picture,
|
|
1403
1398
|
Play,
|
|
1404
1399
|
PlayAlt,
|
|
1405
1400
|
Price,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marigold/icons",
|
|
3
3
|
"description": "Marigold Icons",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.6.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"marigold",
|
|
@@ -22,18 +22,19 @@
|
|
|
22
22
|
"directory": "packages/icons"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@marigold/system": "0.
|
|
25
|
+
"@marigold/system": "0.9.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": "^16.x || ^17.0.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@marigold/tsconfig": "0.3.0",
|
|
32
|
-
"tsup": "5.
|
|
32
|
+
"tsup": "5.12.5"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "tsup src/index.ts",
|
|
36
36
|
"watch": "tsup src/index.ts --watch",
|
|
37
37
|
"clean": "rm -rf node_modules && rm -rf dist"
|
|
38
|
-
}
|
|
38
|
+
},
|
|
39
|
+
"readme": "# `@marigold/icons`\n\n> Marigold icons\n"
|
|
39
40
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
# @marigold/icons
|
|
2
|
-
|
|
3
|
-
## 0.5.0
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- [#1842](https://github.com/marigold-ui/marigold/pull/1842) [`e053b7b9`](https://github.com/marigold-ui/marigold/commit/e053b7b903f02c56cf10e6b9aecbedd29399895d) Thanks [@ti10le](https://github.com/ti10le)! - feat: extend svg fill prop to handle theme color
|
|
8
|
-
|
|
9
|
-
### Patch Changes
|
|
10
|
-
|
|
11
|
-
- [#1844](https://github.com/marigold-ui/marigold/pull/1844) [`64b9089e`](https://github.com/marigold-ui/marigold/commit/64b9089ed2e1e35975472e342b02cda40f5de66f) Thanks [@sarahgm](https://github.com/sarahgm)! - Icon fix
|
|
12
|
-
|
|
13
|
-
- Updated dependencies [[`4cc0ad3b`](https://github.com/marigold-ui/marigold/commit/4cc0ad3b85b993e01b4d85b6f30b1a81cdee2351), [`539d4198`](https://github.com/marigold-ui/marigold/commit/539d41987118db125ee37a4a83231335ea15830a), [`e053b7b9`](https://github.com/marigold-ui/marigold/commit/e053b7b903f02c56cf10e6b9aecbedd29399895d)]:
|
|
14
|
-
- @marigold/system@0.6.0
|
|
15
|
-
|
|
16
|
-
## 0.4.2
|
|
17
|
-
|
|
18
|
-
### Patch Changes
|
|
19
|
-
|
|
20
|
-
- Updated dependencies [[`a178eafe`](https://github.com/marigold-ui/marigold/commit/a178eafe8c8380ee23b4587d953ee52b231414ff)]:
|
|
21
|
-
- @marigold/system@0.5.1
|
|
22
|
-
|
|
23
|
-
## 0.4.1
|
|
24
|
-
|
|
25
|
-
### Patch Changes
|
|
26
|
-
|
|
27
|
-
- Updated dependencies [[`5936de75`](https://github.com/marigold-ui/marigold/commit/5936de75e5a0134584438117c53c5edfe15c6c5d)]:
|
|
28
|
-
- @marigold/system@0.5.0
|
|
29
|
-
|
|
30
|
-
## 0.4.0
|
|
31
|
-
|
|
32
|
-
### Minor Changes
|
|
33
|
-
|
|
34
|
-
- [`f9526234`](https://github.com/marigold-ui/marigold/commit/f9526234257a149b12c14191a524691470da3942) Thanks [@sebald](https://github.com/sebald)! - chore: Use `tsup` to build packages
|
|
35
|
-
|
|
36
|
-
* [`f9526234`](https://github.com/marigold-ui/marigold/commit/f9526234257a149b12c14191a524691470da3942) Thanks [@sebald](https://github.com/sebald)! - Improved size in node_modules
|
|
37
|
-
|
|
38
|
-
### Patch Changes
|
|
39
|
-
|
|
40
|
-
- Updated dependencies [[`f9526234`](https://github.com/marigold-ui/marigold/commit/f9526234257a149b12c14191a524691470da3942), [`f9526234`](https://github.com/marigold-ui/marigold/commit/f9526234257a149b12c14191a524691470da3942)]:
|
|
41
|
-
- @marigold/system@0.4.0
|
|
42
|
-
|
|
43
|
-
## 0.3.1
|
|
44
|
-
|
|
45
|
-
### Patch Changes
|
|
46
|
-
|
|
47
|
-
- [#1676](https://github.com/marigold-ui/marigold/pull/1676) [`379041bc`](https://github.com/marigold-ui/marigold/commit/379041bc7d4502bca98029a95afe43ce693222cd) Thanks [@ti10le](https://github.com/ti10le)! - remove the last mdx stories
|
|
48
|
-
|
|
49
|
-
- Updated dependencies [[`379041bc`](https://github.com/marigold-ui/marigold/commit/379041bc7d4502bca98029a95afe43ce693222cd)]:
|
|
50
|
-
- @marigold/system@0.3.1
|
|
51
|
-
|
|
52
|
-
## 0.3.0
|
|
53
|
-
|
|
54
|
-
### Patch Changes
|
|
55
|
-
|
|
56
|
-
- [#1579](https://github.com/marigold-ui/marigold/pull/1579) [`e13e3cc1`](https://github.com/marigold-ui/marigold/commit/e13e3cc1fc66b261209973b1fc90eb48117076e9) Thanks [@ti10le](https://github.com/ti10le)! - feat: remove Heading from marigold
|
|
57
|
-
|
|
58
|
-
* [#1501](https://github.com/marigold-ui/marigold/pull/1501) [`1c1f8648`](https://github.com/marigold-ui/marigold/commit/1c1f864820a060214406ef711f4ed873746c16c4) Thanks [@ti10le](https://github.com/ti10le)! - feat(storybook): remove use styles stories
|
|
59
|
-
|
|
60
|
-
- [#1506](https://github.com/marigold-ui/marigold/pull/1506) [`7b2a0374`](https://github.com/marigold-ui/marigold/commit/7b2a0374b2ca4546a7e616d99313028da3ef412e) Thanks [@ti10le](https://github.com/ti10le)! - infra(packages): add icons package as dependency to component package
|
|
61
|
-
|
|
62
|
-
* [#1589](https://github.com/marigold-ui/marigold/pull/1589) [`8cbcb91a`](https://github.com/marigold-ui/marigold/commit/8cbcb91a7b63ce8f10ee79ed76121e5022cbe07b) Thanks [@sebald](https://github.com/sebald)! - feat: normalize <SVG> and move to system package
|
|
63
|
-
|
|
64
|
-
BREAKING: <SVG> moved from `@marigold/icons` to `@marigold/system`
|
|
65
|
-
|
|
66
|
-
- [#1550](https://github.com/marigold-ui/marigold/pull/1550) [`846eb640`](https://github.com/marigold-ui/marigold/commit/846eb640ad035c7f3410b4a8a451f8de56e62339) Thanks [@sebald](https://github.com/sebald)! - feat: Merge <Box> and <Element>
|
|
67
|
-
|
|
68
|
-
* [#1450](https://github.com/marigold-ui/marigold/pull/1450) [`46aede50`](https://github.com/marigold-ui/marigold/commit/46aede50c43e2dce0cacdc8f4c7da55fa18962b9) Thanks [@ti10le](https://github.com/ti10le)! - feature: use Element in SVG + replace useStyles
|
|
69
|
-
|
|
70
|
-
* Updated dependencies [[`c030aa85`](https://github.com/marigold-ui/marigold/commit/c030aa85156356c294bafe9831024f6b6f2ce4db), [`8eda245f`](https://github.com/marigold-ui/marigold/commit/8eda245f01a918fcdaa9f0ac211889ed869aa375), [`5a04de11`](https://github.com/marigold-ui/marigold/commit/5a04de110637d004f5824679697ee4d6a90eaf34), [`c1da52c0`](https://github.com/marigold-ui/marigold/commit/c1da52c0f035b141608fd606e6ba3bc2b5482dc1), [`1448ddca`](https://github.com/marigold-ui/marigold/commit/1448ddcaa0f647f48b018fa74a8686af30eccc53), [`5107b943`](https://github.com/marigold-ui/marigold/commit/5107b943cb3085eb3137d84e79966acad6173a26), [`cd3a0d3e`](https://github.com/marigold-ui/marigold/commit/cd3a0d3edb3f2ddc1f561e8007e1c20000f7855a), [`ebd6e26f`](https://github.com/marigold-ui/marigold/commit/ebd6e26f71f675b98b663bc45c6a2d5badddcd47), [`6e485f5a`](https://github.com/marigold-ui/marigold/commit/6e485f5a8800094fe54c075a2b21f8abe726b3cd), [`80a2abe5`](https://github.com/marigold-ui/marigold/commit/80a2abe5804ba2c5a48cc6b05211245c37baf266), [`e13e3cc1`](https://github.com/marigold-ui/marigold/commit/e13e3cc1fc66b261209973b1fc90eb48117076e9), [`1829cf17`](https://github.com/marigold-ui/marigold/commit/1829cf17e16c574e5577b3e1709c34dc7ed4faaf), [`1c1f8648`](https://github.com/marigold-ui/marigold/commit/1c1f864820a060214406ef711f4ed873746c16c4), [`51af6693`](https://github.com/marigold-ui/marigold/commit/51af669330fd52e4e31fe5ad71d2b202ab8d2231), [`a00b7eb9`](https://github.com/marigold-ui/marigold/commit/a00b7eb971131634414d3912d059fb505bb7a370), [`ec5baf85`](https://github.com/marigold-ui/marigold/commit/ec5baf85a9a0f82a4fca5bbd1e1680316c186593), [`0bb8f19e`](https://github.com/marigold-ui/marigold/commit/0bb8f19ebdec0e2f9dc3f6164f4373cac5c10880), [`c4ae5c5c`](https://github.com/marigold-ui/marigold/commit/c4ae5c5ca442f93034ff8f4c70adc295547951d4), [`a1ef2108`](https://github.com/marigold-ui/marigold/commit/a1ef2108dd6c8e6838b517dd58c82d38e71dae2b), [`2f7b936f`](https://github.com/marigold-ui/marigold/commit/2f7b936f5b07eade00a51cb138c3c492f1e08c9d), [`846eb640`](https://github.com/marigold-ui/marigold/commit/846eb640ad035c7f3410b4a8a451f8de56e62339), [`5d63cd9c`](https://github.com/marigold-ui/marigold/commit/5d63cd9c14578787083c82c85d93bbd2ff0efac6)]:
|
|
71
|
-
- @marigold/system@0.3.0
|