@mirohq/design-system-icons 1.29.0 → 1.30.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 CHANGED
@@ -4592,6 +4592,32 @@ const IconConnectionLineStraight = react.forwardRef(
4592
4592
  );
4593
4593
  IconConnectionLineStraight[designSystemBaseIcon.iconSymbol] = true;
4594
4594
 
4595
+ const IconCornersInside = react.forwardRef(
4596
+ ({ size = "medium", ...props }, forwardRef2) => {
4597
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
4598
+ return react.createElement(
4599
+ StyledIcon,
4600
+ {
4601
+ ...props,
4602
+ debug,
4603
+ "aria-hidden": true,
4604
+ size,
4605
+ viewBox: "0 0 24 24",
4606
+ fill: "none",
4607
+ ref: forwardRef2
4608
+ },
4609
+ /* @__PURE__ */ jsxRuntime.jsx(
4610
+ "path",
4611
+ {
4612
+ fill: "currentColor",
4613
+ d: "M6 18H2v-2h5l1 1v5H6v-4Zm10-1 1-1h5v2h-4v4h-2v-5Zm0-10V2h2v4h4v2h-5l-1-1ZM2 6h4V2h2v5L7 8H2V6Z"
4614
+ }
4615
+ )
4616
+ );
4617
+ }
4618
+ );
4619
+ IconCornersInside[designSystemBaseIcon.iconSymbol] = true;
4620
+
4595
4621
  const IconCornersThreeEyeOpen = react.forwardRef(
4596
4622
  ({ size = "medium", ...props }, forwardRef2) => {
4597
4623
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -4618,6 +4644,32 @@ const IconCornersThreeEyeOpen = react.forwardRef(
4618
4644
  );
4619
4645
  IconCornersThreeEyeOpen[designSystemBaseIcon.iconSymbol] = true;
4620
4646
 
4647
+ const IconCorners = react.forwardRef(
4648
+ ({ size = "medium", ...props }, forwardRef2) => {
4649
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
4650
+ return react.createElement(
4651
+ StyledIcon,
4652
+ {
4653
+ ...props,
4654
+ debug,
4655
+ "aria-hidden": true,
4656
+ size,
4657
+ viewBox: "0 0 24 24",
4658
+ fill: "none",
4659
+ ref: forwardRef2
4660
+ },
4661
+ /* @__PURE__ */ jsxRuntime.jsx(
4662
+ "path",
4663
+ {
4664
+ fill: "currentColor",
4665
+ d: "M4 20h4v2H3l-1-1v-5h2v4Zm18 1-1 1h-5v-2h4v-4h2v5ZM8 4H4v4H2V3l1-1h5v2Zm14-1v5h-2V4h-4V2h5l1 1Z"
4666
+ }
4667
+ )
4668
+ );
4669
+ }
4670
+ );
4671
+ IconCorners[designSystemBaseIcon.iconSymbol] = true;
4672
+
4621
4673
  const IconCounter = react.forwardRef(
4622
4674
  ({ size = "medium", ...props }, forwardRef2) => {
4623
4675
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -16658,9 +16710,7 @@ const IconVideoPlayer = react.forwardRef(
16658
16710
  "path",
16659
16711
  {
16660
16712
  fill: "currentColor",
16661
- fillRule: "evenodd",
16662
- d: "M8 17H6v-2h2v2Zm10 0h-8v-2h8v2Zm-3-6.929v.858L10.833 13.5 10 13.071V7.93l.833-.429L15 10.071ZM19 4a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM5 6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z",
16663
- clipRule: "evenodd"
16713
+ d: "M10.833 9 15 11.571v.858L10.833 15 10 14.571V9.43l.833-.43ZM19 4a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM5 6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z"
16664
16714
  }
16665
16715
  )
16666
16716
  );
@@ -17113,6 +17163,8 @@ exports.IconCompass = IconCompass;
17113
17163
  exports.IconConeSerpentine = IconConeSerpentine;
17114
17164
  exports.IconConnectionLineElbows = IconConnectionLineElbows;
17115
17165
  exports.IconConnectionLineStraight = IconConnectionLineStraight;
17166
+ exports.IconCorners = IconCorners;
17167
+ exports.IconCornersInside = IconCornersInside;
17116
17168
  exports.IconCornersThreeEyeOpen = IconCornersThreeEyeOpen;
17117
17169
  exports.IconCounter = IconCounter;
17118
17170
  exports.IconCreditCard = IconCreditCard;