@mirohq/design-system-icons 0.31.1 → 0.32.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/dist/main.js +163 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +158 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +14 -1
- package/package.json +5 -5
- package/react/dots-six.tsx +35 -0
- package/react/dots-three-vertical.tsx +35 -0
- package/react/index.ts +6 -0
- package/react/org-chart.tsx +33 -0
- package/react/quotes.tsx +32 -0
- package/react/sidebar-global-closed.tsx +32 -0
- package/react/sidebar-global-open.tsx +32 -0
- package/svg/24/dots-six.svg +2 -0
- package/svg/24/dots-three-vertical.svg +2 -0
- package/svg/24/org-chart.svg +2 -0
- package/svg/24/quotes.svg +2 -0
- package/svg/24/sidebar-global-closed.svg +2 -0
- package/svg/24/sidebar-global-open.svg +2 -0
- package/svg/meta.json +46 -0
package/dist/main.js
CHANGED
|
@@ -3980,6 +3980,66 @@ const IconDotsNine = react.forwardRef(
|
|
|
3980
3980
|
);
|
|
3981
3981
|
IconDotsNine[designSystemBaseIcon.iconSymbol] = true;
|
|
3982
3982
|
|
|
3983
|
+
const IconDotsSix = react.forwardRef(
|
|
3984
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
3985
|
+
StyledIcon,
|
|
3986
|
+
{
|
|
3987
|
+
...props,
|
|
3988
|
+
weight,
|
|
3989
|
+
size,
|
|
3990
|
+
viewBox: "0 0 24 24",
|
|
3991
|
+
fill: "none",
|
|
3992
|
+
ref: forwardRef2
|
|
3993
|
+
},
|
|
3994
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3995
|
+
"path",
|
|
3996
|
+
{
|
|
3997
|
+
fill: "currentColor",
|
|
3998
|
+
d: "M10 4c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM18 4c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM10 12c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM10 20c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM18 12c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM18 20c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2Z"
|
|
3999
|
+
}
|
|
4000
|
+
),
|
|
4001
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4002
|
+
"path",
|
|
4003
|
+
{
|
|
4004
|
+
stroke: "currentColor",
|
|
4005
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
4006
|
+
d: "m8 12.0003.001-.0003"
|
|
4007
|
+
}
|
|
4008
|
+
)
|
|
4009
|
+
)
|
|
4010
|
+
);
|
|
4011
|
+
IconDotsSix[designSystemBaseIcon.iconSymbol] = true;
|
|
4012
|
+
|
|
4013
|
+
const IconDotsThreeVertical = react.forwardRef(
|
|
4014
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
4015
|
+
StyledIcon,
|
|
4016
|
+
{
|
|
4017
|
+
...props,
|
|
4018
|
+
weight,
|
|
4019
|
+
size,
|
|
4020
|
+
viewBox: "0 0 24 24",
|
|
4021
|
+
fill: "none",
|
|
4022
|
+
ref: forwardRef2
|
|
4023
|
+
},
|
|
4024
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4025
|
+
"path",
|
|
4026
|
+
{
|
|
4027
|
+
fill: "currentColor",
|
|
4028
|
+
d: "M12 6c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2ZM12 14c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2ZM12 22c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2Z"
|
|
4029
|
+
}
|
|
4030
|
+
),
|
|
4031
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4032
|
+
"path",
|
|
4033
|
+
{
|
|
4034
|
+
stroke: "currentColor",
|
|
4035
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
4036
|
+
d: "m12 12.0003.001-.0003"
|
|
4037
|
+
}
|
|
4038
|
+
)
|
|
4039
|
+
)
|
|
4040
|
+
);
|
|
4041
|
+
IconDotsThreeVertical[designSystemBaseIcon.iconSymbol] = true;
|
|
4042
|
+
|
|
3983
4043
|
const IconDotsThree = react.forwardRef(
|
|
3984
4044
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
3985
4045
|
StyledIcon,
|
|
@@ -7215,6 +7275,31 @@ const IconOffice = react.forwardRef(
|
|
|
7215
7275
|
);
|
|
7216
7276
|
IconOffice[designSystemBaseIcon.iconSymbol] = true;
|
|
7217
7277
|
|
|
7278
|
+
const IconOrgChart = react.forwardRef(
|
|
7279
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
7280
|
+
StyledIcon,
|
|
7281
|
+
{
|
|
7282
|
+
...props,
|
|
7283
|
+
weight,
|
|
7284
|
+
size,
|
|
7285
|
+
viewBox: "0 0 24 24",
|
|
7286
|
+
fill: "none",
|
|
7287
|
+
ref: forwardRef2
|
|
7288
|
+
},
|
|
7289
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
7290
|
+
"path",
|
|
7291
|
+
{
|
|
7292
|
+
stroke: "currentColor",
|
|
7293
|
+
strokeLinecap: "round",
|
|
7294
|
+
strokeLinejoin: "round",
|
|
7295
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
7296
|
+
d: "M6 12h12m-9-9h6c.5523 0 1 .4477 1 1v4c0 .5523-.4477 1-1 1h-6c-.5523 0-1-.4477-1-1v-4c0-.5523.4477-1 1-1Zm-6 12h6c.5523 0 1 .4477 1 1v4c0 .5523-.4477 1-1 1h-6c-.5523 0-1-.4477-1-1v-4c0-.5523.4477-1 1-1Zm12 0h6c.5523 0 1 .4477 1 1v4c0 .5523-.4477 1-1 1h-6c-.5523 0-1-.4477-1-1v-4c0-.5523.4477-1 1-1Z"
|
|
7297
|
+
}
|
|
7298
|
+
)
|
|
7299
|
+
)
|
|
7300
|
+
);
|
|
7301
|
+
IconOrgChart[designSystemBaseIcon.iconSymbol] = true;
|
|
7302
|
+
|
|
7218
7303
|
const IconPaintBucket = react.forwardRef(
|
|
7219
7304
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
7220
7305
|
StyledIcon,
|
|
@@ -8238,6 +8323,30 @@ const IconQuestionMark = react.forwardRef(
|
|
|
8238
8323
|
);
|
|
8239
8324
|
IconQuestionMark[designSystemBaseIcon.iconSymbol] = true;
|
|
8240
8325
|
|
|
8326
|
+
const IconQuotes = react.forwardRef(
|
|
8327
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
8328
|
+
StyledIcon,
|
|
8329
|
+
{
|
|
8330
|
+
...props,
|
|
8331
|
+
weight,
|
|
8332
|
+
size,
|
|
8333
|
+
viewBox: "0 0 24 24",
|
|
8334
|
+
fill: "none",
|
|
8335
|
+
ref: forwardRef2
|
|
8336
|
+
},
|
|
8337
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8338
|
+
"path",
|
|
8339
|
+
{
|
|
8340
|
+
stroke: "currentColor",
|
|
8341
|
+
strokeLinecap: "round",
|
|
8342
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
8343
|
+
d: "M10 13.1667h-6c-.5523 0-1-.5224-1-1.1667v-5.8333c0-.6444.4477-1.1667 1-1.1667h5c.5523 0 1 .5223 1 1.1667v7Zm0 0c0 4.6666-3 5.8333-3 5.8333m14-5.8333h-6c-.5523 0-1-.5224-1-1.1667v-5.8333c0-.6444.4477-1.1667 1-1.1667h5c.5523 0 1 .5223 1 1.1667v7Zm0 0c0 4.6666-3 5.8333-3 5.8333"
|
|
8344
|
+
}
|
|
8345
|
+
)
|
|
8346
|
+
)
|
|
8347
|
+
);
|
|
8348
|
+
IconQuotes[designSystemBaseIcon.iconSymbol] = true;
|
|
8349
|
+
|
|
8241
8350
|
const IconRectangleArrowUpCenter = react.forwardRef(
|
|
8242
8351
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
8243
8352
|
StyledIcon,
|
|
@@ -9148,6 +9257,54 @@ const IconSidebarClosed = react.forwardRef(
|
|
|
9148
9257
|
);
|
|
9149
9258
|
IconSidebarClosed[designSystemBaseIcon.iconSymbol] = true;
|
|
9150
9259
|
|
|
9260
|
+
const IconSidebarGlobalClosed = react.forwardRef(
|
|
9261
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
9262
|
+
StyledIcon,
|
|
9263
|
+
{
|
|
9264
|
+
...props,
|
|
9265
|
+
weight,
|
|
9266
|
+
size,
|
|
9267
|
+
viewBox: "0 0 24 24",
|
|
9268
|
+
fill: "none",
|
|
9269
|
+
ref: forwardRef2
|
|
9270
|
+
},
|
|
9271
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9272
|
+
"path",
|
|
9273
|
+
{
|
|
9274
|
+
stroke: "currentColor",
|
|
9275
|
+
strokeLinecap: "round",
|
|
9276
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9277
|
+
d: "M8 4h-4.5a.5.5 0 0 0-.5.5v15a.5.5 0 0 0 .5.5h4.5m0-16h12.5a.5.5 0 0 1 .5.5v15a.5.5 0 0 1-.5.5h-12.5m0-16v16m4-8h5.5m0 0-3 3m3-3-3-3"
|
|
9278
|
+
}
|
|
9279
|
+
)
|
|
9280
|
+
)
|
|
9281
|
+
);
|
|
9282
|
+
IconSidebarGlobalClosed[designSystemBaseIcon.iconSymbol] = true;
|
|
9283
|
+
|
|
9284
|
+
const IconSidebarGlobalOpen = react.forwardRef(
|
|
9285
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
9286
|
+
StyledIcon,
|
|
9287
|
+
{
|
|
9288
|
+
...props,
|
|
9289
|
+
weight,
|
|
9290
|
+
size,
|
|
9291
|
+
viewBox: "0 0 24 24",
|
|
9292
|
+
fill: "none",
|
|
9293
|
+
ref: forwardRef2
|
|
9294
|
+
},
|
|
9295
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9296
|
+
"path",
|
|
9297
|
+
{
|
|
9298
|
+
stroke: "currentColor",
|
|
9299
|
+
strokeLinecap: "round",
|
|
9300
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9301
|
+
d: "M8 4h-4.5a.5.5 0 0 0-.5.5v15a.5.5 0 0 0 .5.5h4.5m0-16h12.5a.5.5 0 0 1 .5.5v15a.5.5 0 0 1-.5.5h-12.5m0-16v16m9.5-8h-5.5m0 0 3 3m-3-3 3-3"
|
|
9302
|
+
}
|
|
9303
|
+
)
|
|
9304
|
+
)
|
|
9305
|
+
);
|
|
9306
|
+
IconSidebarGlobalOpen[designSystemBaseIcon.iconSymbol] = true;
|
|
9307
|
+
|
|
9151
9308
|
const IconSidebarOpen = react.forwardRef(
|
|
9152
9309
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
9153
9310
|
StyledIcon,
|
|
@@ -12751,7 +12908,9 @@ exports.IconDiagramCardSmall3 = IconDiagramCardSmall3;
|
|
|
12751
12908
|
exports.IconDistributeHorizontal = IconDistributeHorizontal;
|
|
12752
12909
|
exports.IconDistributeVertical = IconDistributeVertical;
|
|
12753
12910
|
exports.IconDotsNine = IconDotsNine;
|
|
12911
|
+
exports.IconDotsSix = IconDotsSix;
|
|
12754
12912
|
exports.IconDotsThree = IconDotsThree;
|
|
12913
|
+
exports.IconDotsThreeVertical = IconDotsThreeVertical;
|
|
12755
12914
|
exports.IconDotsTwo = IconDotsTwo;
|
|
12756
12915
|
exports.IconDownload = IconDownload;
|
|
12757
12916
|
exports.IconEnvelope = IconEnvelope;
|
|
@@ -12857,6 +13016,7 @@ exports.IconNodesConnectionsThree = IconNodesConnectionsThree;
|
|
|
12857
13016
|
exports.IconNoteMagnifyingGlass = IconNoteMagnifyingGlass;
|
|
12858
13017
|
exports.IconOctagon = IconOctagon;
|
|
12859
13018
|
exports.IconOffice = IconOffice;
|
|
13019
|
+
exports.IconOrgChart = IconOrgChart;
|
|
12860
13020
|
exports.IconPaintBucket = IconPaintBucket;
|
|
12861
13021
|
exports.IconPalette = IconPalette;
|
|
12862
13022
|
exports.IconPaperPlaneFilledRight = IconPaperPlaneFilledRight;
|
|
@@ -12892,6 +13052,7 @@ exports.IconPushPin = IconPushPin;
|
|
|
12892
13052
|
exports.IconPushPinFilled = IconPushPinFilled;
|
|
12893
13053
|
exports.IconQuestionMark = IconQuestionMark;
|
|
12894
13054
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
13055
|
+
exports.IconQuotes = IconQuotes;
|
|
12895
13056
|
exports.IconRectangleArrowUpCenter = IconRectangleArrowUpCenter;
|
|
12896
13057
|
exports.IconRectangleDashLines = IconRectangleDashLines;
|
|
12897
13058
|
exports.IconRectangleDotLinePen = IconRectangleDotLinePen;
|
|
@@ -12924,6 +13085,8 @@ exports.IconShieldCheck = IconShieldCheck;
|
|
|
12924
13085
|
exports.IconShieldLock = IconShieldLock;
|
|
12925
13086
|
exports.IconShuffle = IconShuffle;
|
|
12926
13087
|
exports.IconSidebarClosed = IconSidebarClosed;
|
|
13088
|
+
exports.IconSidebarGlobalClosed = IconSidebarGlobalClosed;
|
|
13089
|
+
exports.IconSidebarGlobalOpen = IconSidebarGlobalOpen;
|
|
12927
13090
|
exports.IconSidebarOpen = IconSidebarOpen;
|
|
12928
13091
|
exports.IconSlidersX = IconSlidersX;
|
|
12929
13092
|
exports.IconSlidersY = IconSlidersY;
|