@mirohq/design-system-icons 1.33.0 → 1.34.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 +29 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +29 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +4 -4
- package/react/heart-plus-music.tsx +36 -0
- package/react/index.ts +1 -0
- package/svg/24/heart-plus-music.svg +2 -0
- package/svg/meta.json +11 -0
package/dist/main.js
CHANGED
|
@@ -7168,6 +7168,34 @@ const IconHeartMusicNote = react.forwardRef(
|
|
|
7168
7168
|
);
|
|
7169
7169
|
IconHeartMusicNote[designSystemBaseIcon.iconSymbol] = true;
|
|
7170
7170
|
|
|
7171
|
+
const IconHeartPlusMusic = react.forwardRef(
|
|
7172
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
7173
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
7174
|
+
return react.createElement(
|
|
7175
|
+
StyledIcon,
|
|
7176
|
+
{
|
|
7177
|
+
...props,
|
|
7178
|
+
debug,
|
|
7179
|
+
"aria-hidden": true,
|
|
7180
|
+
size,
|
|
7181
|
+
viewBox: "0 0 24 24",
|
|
7182
|
+
fill: "none",
|
|
7183
|
+
ref: forwardRef2
|
|
7184
|
+
},
|
|
7185
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
7186
|
+
"path",
|
|
7187
|
+
{
|
|
7188
|
+
fill: "currentColor",
|
|
7189
|
+
fillRule: "evenodd",
|
|
7190
|
+
d: "M20.938 11.33a3 3 0 0 1 .183 4.41l-.464.464-1.414-1.414.464-.463a1 1 0 0 0-.062-1.47l-.829-.702v6.842a3 3 0 1 1-2-2.825V9.998l1.646-.764 2.476 2.097Zm-5.122 6.667a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM7 14v3h3v2H7v3H5v-3H2v-2h3v-3h2Zm9.252-8.352c0 1.595-1.025 2.97-2.128 4.067-.999.992-2.244 1.931-3.343 2.761l-.425.321H9.148l-.277-.21c-1.14-.862-2.449-1.852-3.493-2.898-1.097-1.098-2.126-2.474-2.126-4.04 0-2.007 1.567-3.803 3.822-3.638a4.06 4.06 0 0 1 2.678 1.27 4.06 4.06 0 0 1 2.678-1.27c2.255-.164 3.822 1.632 3.822 3.637Zm-3.678-1.642c.956-.07 1.678.652 1.678 1.642 0 .745-.502 1.619-1.54 2.648-.846.844-1.903 1.65-2.96 2.45-1.054-.801-2.112-1.621-2.96-2.47-1.04-1.043-1.54-1.916-1.54-2.628 0-.99.722-1.712 1.678-1.642 1.1.08 1.738.929 1.814 1.526l.008.116h2c0-.595.65-1.557 1.822-1.642Z",
|
|
7191
|
+
clipRule: "evenodd"
|
|
7192
|
+
}
|
|
7193
|
+
)
|
|
7194
|
+
);
|
|
7195
|
+
}
|
|
7196
|
+
);
|
|
7197
|
+
IconHeartPlusMusic[designSystemBaseIcon.iconSymbol] = true;
|
|
7198
|
+
|
|
7171
7199
|
const IconHeart = react.forwardRef(
|
|
7172
7200
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
7173
7201
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -17757,6 +17785,7 @@ exports.IconHeadsetPerson = IconHeadsetPerson;
|
|
|
17757
17785
|
exports.IconHeart = IconHeart;
|
|
17758
17786
|
exports.IconHeartFilled = IconHeartFilled;
|
|
17759
17787
|
exports.IconHeartMusicNote = IconHeartMusicNote;
|
|
17788
|
+
exports.IconHeartPlusMusic = IconHeartPlusMusic;
|
|
17760
17789
|
exports.IconHexagon = IconHexagon;
|
|
17761
17790
|
exports.IconHighlighter = IconHighlighter;
|
|
17762
17791
|
exports.IconHighlighterColorSelection = IconHighlighterColorSelection;
|