@d-matrix/icons-react 0.83.0 → 0.85.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.
- package/dist/icons/index.js +1 -1
- package/dist/icons/index.mjs +130 -128
- package/dist/icons/legacy/StarColored.d.ts +4 -0
- package/dist/icons/legacy/StarColored.js +1 -0
- package/dist/icons/legacy/StarColored.mjs +38 -0
- package/dist/icons/legacy/index.d.ts +1 -0
- package/dist/icons/legacy/index.js +1 -1
- package/dist/icons/legacy/index.mjs +128 -126
- package/dist/icons/new/AddCircleTwoTone.d.ts +4 -0
- package/dist/icons/new/AddCircleTwoTone.js +1 -0
- package/dist/icons/new/AddCircleTwoTone.mjs +43 -0
- package/dist/icons/new/AddCircleTwoToneLight.d.ts +4 -0
- package/dist/icons/new/AddCircleTwoToneLight.js +1 -0
- package/dist/icons/new/AddCircleTwoToneLight.mjs +43 -0
- package/dist/icons/new/MinusCircleTwoTone.d.ts +4 -0
- package/dist/icons/new/MinusCircleTwoTone.js +1 -0
- package/dist/icons/new/MinusCircleTwoTone.mjs +41 -0
- package/dist/icons/new/MinusCircleTwoToneLight.d.ts +4 -0
- package/dist/icons/new/MinusCircleTwoToneLight.js +1 -0
- package/dist/icons/new/MinusCircleTwoToneLight.mjs +41 -0
- package/dist/icons/new/index.d.ts +4 -0
- package/dist/icons/new/index.js +1 -1
- package/dist/icons/new/index.mjs +3758 -3750
- package/dist/index-Cfp-baSL.js +3792 -0
- package/dist/index-Dv1nsnKh.cjs +1 -0
- package/package.json +2 -2
- package/dist/index-gZ8Qi8bl.cjs +0 -1
- package/dist/index-jD9XYduD.js +0 -3784
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { D as d, _ as t, a as n } from "../../dm-icon-C2_uAjH7.js";
|
|
2
|
+
import { jsx as m } from "react/jsx-runtime";
|
|
3
|
+
import e from "react";
|
|
4
|
+
const p = ["title", "titleId"], h = e.forwardRef((i, o) => /* @__PURE__ */ m(d, t(t({
|
|
5
|
+
ref: o
|
|
6
|
+
}, i), {}, {
|
|
7
|
+
icon: (
|
|
8
|
+
// @ts-expect-error TODO improve TS type
|
|
9
|
+
(l) => {
|
|
10
|
+
let {
|
|
11
|
+
title: a,
|
|
12
|
+
titleId: r
|
|
13
|
+
} = l, c = n(l, p);
|
|
14
|
+
return e.createElement("svg", t({
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
width: "1em",
|
|
17
|
+
height: "1em",
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
viewBox: "0 0 16 16",
|
|
20
|
+
"aria-hidden": "true",
|
|
21
|
+
focusable: "false",
|
|
22
|
+
"aria-labelledby": r
|
|
23
|
+
}, c), a ? e.createElement("title", {
|
|
24
|
+
id: r
|
|
25
|
+
}, a) : null, e.createElement("path", {
|
|
26
|
+
fillOpacity: 0.1,
|
|
27
|
+
d: "M8 .667a7.333 7.333 0 1 0 0 14.666A7.333 7.333 0 0 0 8 .667"
|
|
28
|
+
}), e.createElement("path", {
|
|
29
|
+
fillOpacity: 0.2,
|
|
30
|
+
fillRule: "evenodd",
|
|
31
|
+
d: "M8 .667a7.333 7.333 0 1 0 0 14.666A7.333 7.333 0 0 0 8 .667m0 1a6.333 6.333 0 1 1 0 12.666A6.333 6.333 0 0 1 8 1.667",
|
|
32
|
+
clipRule: "evenodd"
|
|
33
|
+
}), e.createElement("path", {
|
|
34
|
+
d: "M8.667 8.833H4.333v-1.5h7.334v1.5z"
|
|
35
|
+
}));
|
|
36
|
+
}
|
|
37
|
+
)
|
|
38
|
+
})));
|
|
39
|
+
export {
|
|
40
|
+
h as default
|
|
41
|
+
};
|
|
@@ -13,6 +13,8 @@ export { default as AddAndSubtract } from './AddAndSubtract';
|
|
|
13
13
|
export { default as AddCircle } from './AddCircle';
|
|
14
14
|
export { default as AddCircleColor } from './AddCircleColor';
|
|
15
15
|
export { default as AddCircleFilled } from './AddCircleFilled';
|
|
16
|
+
export { default as AddCircleTwoTone } from './AddCircleTwoTone';
|
|
17
|
+
export { default as AddCircleTwoToneLight } from './AddCircleTwoToneLight';
|
|
16
18
|
export { default as AddRectangle } from './AddRectangle';
|
|
17
19
|
export { default as AddRectangleFilled } from './AddRectangleFilled';
|
|
18
20
|
export { default as AddressBook } from './AddressBook';
|
|
@@ -1185,6 +1187,8 @@ export { default as Minus } from './Minus';
|
|
|
1185
1187
|
export { default as MinusCircle } from './MinusCircle';
|
|
1186
1188
|
export { default as MinusCircleColor } from './MinusCircleColor';
|
|
1187
1189
|
export { default as MinusCircleFilled } from './MinusCircleFilled';
|
|
1190
|
+
export { default as MinusCircleTwoTone } from './MinusCircleTwoTone';
|
|
1191
|
+
export { default as MinusCircleTwoToneLight } from './MinusCircleTwoToneLight';
|
|
1188
1192
|
export { default as MinusRectangle } from './MinusRectangle';
|
|
1189
1193
|
export { default as MinusRectangleFilled } from './MinusRectangleFilled';
|
|
1190
1194
|
export { default as Mirror } from './Mirror';
|