@mirohq/design-system-icons 1.25.0 → 1.26.1-aria-label-icon-button.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/main.js +81 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +79 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -1
- package/package.json +4 -4
- package/react/basic-chevron.tsx +34 -0
- package/react/figma.tsx +34 -0
- package/react/index.ts +3 -0
- package/react/notched-chevron.tsx +34 -0
- package/svg/24/basic-chevron.svg +2 -0
- package/svg/24/figma.svg +2 -0
- package/svg/24/notched-chevron.svg +2 -0
- package/svg/meta.json +27 -0
package/dist/main.js
CHANGED
|
@@ -1994,6 +1994,32 @@ const IconBarrel = react.forwardRef(
|
|
|
1994
1994
|
);
|
|
1995
1995
|
IconBarrel[designSystemBaseIcon.iconSymbol] = true;
|
|
1996
1996
|
|
|
1997
|
+
const IconBasicChevron = react.forwardRef(
|
|
1998
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
1999
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
2000
|
+
return react.createElement(
|
|
2001
|
+
StyledIcon,
|
|
2002
|
+
{
|
|
2003
|
+
...props,
|
|
2004
|
+
debug,
|
|
2005
|
+
"aria-hidden": true,
|
|
2006
|
+
size,
|
|
2007
|
+
viewBox: "0 0 24 24",
|
|
2008
|
+
fill: "none",
|
|
2009
|
+
ref: forwardRef2
|
|
2010
|
+
},
|
|
2011
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2012
|
+
"path",
|
|
2013
|
+
{
|
|
2014
|
+
fill: "currentColor",
|
|
2015
|
+
d: "m16.95 5 .123.008a1 1 0 0 1 .706.432l4.05 6 .006 1.11-3.952 6a1 1 0 0 1-.834.45H2.998a1 1 0 0 1-.834-1.55L5.754 12l-3.59-5.45A1 1 0 0 1 3 5h13.95Zm-9.164 6.45a1 1 0 0 1 0 1.1L4.856 17H16.51l3.287-4.993L16.418 7H4.856l2.93 4.45Z"
|
|
2016
|
+
}
|
|
2017
|
+
)
|
|
2018
|
+
);
|
|
2019
|
+
}
|
|
2020
|
+
);
|
|
2021
|
+
IconBasicChevron[designSystemBaseIcon.iconSymbol] = true;
|
|
2022
|
+
|
|
1997
2023
|
const IconBear = react.forwardRef(
|
|
1998
2024
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
1999
2025
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -6162,6 +6188,32 @@ const IconFactory = react.forwardRef(
|
|
|
6162
6188
|
);
|
|
6163
6189
|
IconFactory[designSystemBaseIcon.iconSymbol] = true;
|
|
6164
6190
|
|
|
6191
|
+
const IconFigma = react.forwardRef(
|
|
6192
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
6193
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
6194
|
+
return react.createElement(
|
|
6195
|
+
StyledIcon,
|
|
6196
|
+
{
|
|
6197
|
+
...props,
|
|
6198
|
+
debug,
|
|
6199
|
+
"aria-hidden": true,
|
|
6200
|
+
size,
|
|
6201
|
+
viewBox: "0 0 24 24",
|
|
6202
|
+
fill: "none",
|
|
6203
|
+
ref: forwardRef2
|
|
6204
|
+
},
|
|
6205
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
6206
|
+
"path",
|
|
6207
|
+
{
|
|
6208
|
+
fill: "currentColor",
|
|
6209
|
+
d: "M9 21a3 3 0 0 0 3-3v-3H9a3 3 0 0 0 0 6Zm-2.999-9a3 3 0 0 1 3-3H12v6H9a3 3 0 0 1-2.999-3Zm0-6a3 3 0 0 1 3-3H12v6H9a3 3 0 0 1-2.999-3ZM12 3h3a3 3 0 0 1 0 6h-3V3Zm5.999 9a3 3 0 0 1-3 3 3 3 0 0 1 0-6 3 3 0 0 1 3 3Z"
|
|
6210
|
+
}
|
|
6211
|
+
)
|
|
6212
|
+
);
|
|
6213
|
+
}
|
|
6214
|
+
);
|
|
6215
|
+
IconFigma[designSystemBaseIcon.iconSymbol] = true;
|
|
6216
|
+
|
|
6165
6217
|
const IconFileSpreadsheet = react.forwardRef(
|
|
6166
6218
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
6167
6219
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -9360,6 +9412,32 @@ const IconNodesConnectionsThree = react.forwardRef(
|
|
|
9360
9412
|
);
|
|
9361
9413
|
IconNodesConnectionsThree[designSystemBaseIcon.iconSymbol] = true;
|
|
9362
9414
|
|
|
9415
|
+
const IconNotchedChevron = react.forwardRef(
|
|
9416
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
9417
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
9418
|
+
return react.createElement(
|
|
9419
|
+
StyledIcon,
|
|
9420
|
+
{
|
|
9421
|
+
...props,
|
|
9422
|
+
debug,
|
|
9423
|
+
"aria-hidden": true,
|
|
9424
|
+
size,
|
|
9425
|
+
viewBox: "0 0 24 24",
|
|
9426
|
+
fill: "none",
|
|
9427
|
+
ref: forwardRef2
|
|
9428
|
+
},
|
|
9429
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9430
|
+
"path",
|
|
9431
|
+
{
|
|
9432
|
+
fill: "currentColor",
|
|
9433
|
+
d: "m16.95 5 .123.008a1 1 0 0 1 .706.432l4.05 6 .006 1.11-3.951 6a1 1 0 0 1-.835.45H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h13.95ZM4 17h12.51l3.288-4.993L16.418 7H4v10Z"
|
|
9434
|
+
}
|
|
9435
|
+
)
|
|
9436
|
+
);
|
|
9437
|
+
}
|
|
9438
|
+
);
|
|
9439
|
+
IconNotchedChevron[designSystemBaseIcon.iconSymbol] = true;
|
|
9440
|
+
|
|
9363
9441
|
const IconNoteMagnifyingGlass = react.forwardRef(
|
|
9364
9442
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
9365
9443
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -16809,6 +16887,7 @@ exports.IconAt = IconAt;
|
|
|
16809
16887
|
exports.IconAttachment = IconAttachment;
|
|
16810
16888
|
exports.IconBadge = IconBadge;
|
|
16811
16889
|
exports.IconBarrel = IconBarrel;
|
|
16890
|
+
exports.IconBasicChevron = IconBasicChevron;
|
|
16812
16891
|
exports.IconBear = IconBear;
|
|
16813
16892
|
exports.IconBell = IconBell;
|
|
16814
16893
|
exports.IconBellSlash = IconBellSlash;
|
|
@@ -16966,6 +17045,7 @@ exports.IconEyeOpenSlash = IconEyeOpenSlash;
|
|
|
16966
17045
|
exports.IconEyedropper = IconEyedropper;
|
|
16967
17046
|
exports.IconFactory = IconFactory;
|
|
16968
17047
|
exports.IconFactoryHouse = IconFactoryHouse;
|
|
17048
|
+
exports.IconFigma = IconFigma;
|
|
16969
17049
|
exports.IconFileSpreadsheet = IconFileSpreadsheet;
|
|
16970
17050
|
exports.IconFilledBottomBox = IconFilledBottomBox;
|
|
16971
17051
|
exports.IconFilledTopBox = IconFilledTopBox;
|
|
@@ -17087,6 +17167,7 @@ exports.IconNodeLinesVertical = IconNodeLinesVertical;
|
|
|
17087
17167
|
exports.IconNodePlus = IconNodePlus;
|
|
17088
17168
|
exports.IconNodesConnected = IconNodesConnected;
|
|
17089
17169
|
exports.IconNodesConnectionsThree = IconNodesConnectionsThree;
|
|
17170
|
+
exports.IconNotchedChevron = IconNotchedChevron;
|
|
17090
17171
|
exports.IconNoteMagnifyingGlass = IconNoteMagnifyingGlass;
|
|
17091
17172
|
exports.IconNotepad = IconNotepad;
|
|
17092
17173
|
exports.IconNumber = IconNumber;
|