@mirohq/design-system-icons 1.20.2 → 1.21.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 CHANGED
@@ -7392,6 +7392,32 @@ const IconKey = react.forwardRef(
7392
7392
  );
7393
7393
  IconKey[designSystemBaseIcon.iconSymbol] = true;
7394
7394
 
7395
+ const IconKeycapSingle = react.forwardRef(
7396
+ ({ size = "medium", ...props }, forwardRef2) => {
7397
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
7398
+ return react.createElement(
7399
+ StyledIcon,
7400
+ {
7401
+ ...props,
7402
+ debug,
7403
+ "aria-hidden": true,
7404
+ size,
7405
+ viewBox: "0 0 24 24",
7406
+ fill: "none",
7407
+ ref: forwardRef2
7408
+ },
7409
+ /* @__PURE__ */ jsxRuntime.jsx(
7410
+ "path",
7411
+ {
7412
+ fill: "currentColor",
7413
+ d: "M20 5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V5Zm2 14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v14ZM12.026 7.596c.602 0 1.145.098 1.618.305.474.207.859.502 1.136.892.284.392.42.852.42 1.361v.38h-1.976l-.027-.35a.717.717 0 0 0-.135-.348.9.9 0 0 0-.375-.294l-.008-.005c-.159-.08-.385-.13-.698-.13-.399 0-.694.088-.912.238-.18.125-.272.296-.272.561 0 .164.04.26.089.32.077.088.18.166.32.229.165.067.35.121.552.161.224.044.442.085.656.124a7.94 7.94 0 0 1 1.398.365c.458.162.84.412 1.132.755.32.372.456.868.456 1.434 0 .585-.15 1.106-.464 1.546-.305.427-.73.743-1.257.954-.52.21-1.113.31-1.773.31-.613 0-1.17-.09-1.66-.277-.495-.189-.9-.471-1.197-.856l-.001-.003c-.304-.401-.448-.88-.448-1.416v-.38h2.018l.048.325a.947.947 0 0 0 .168.43c.072.098.187.19.368.263l.149.046c.162.04.365.064.615.064.38 0 .653-.054.838-.137l.002-.001c.209-.092.33-.2.398-.305a.727.727 0 0 0 .116-.408c0-.213-.06-.32-.131-.383-.117-.103-.293-.197-.55-.265l-.006-.002a11.37 11.37 0 0 0-.953-.223l-.005-.001a10.87 10.87 0 0 1-1.375-.368l-.005-.002a2.591 2.591 0 0 1-1.107-.74c-.316-.368-.448-.861-.448-1.425 0-.616.153-1.155.49-1.583.322-.409.74-.707 1.24-.893h.002a4.481 4.481 0 0 1 1.554-.268Z"
7414
+ }
7415
+ )
7416
+ );
7417
+ }
7418
+ );
7419
+ IconKeycapSingle[designSystemBaseIcon.iconSymbol] = true;
7420
+
7395
7421
  const IconKeycap = react.forwardRef(
7396
7422
  ({ size = "medium", ...props }, forwardRef2) => {
7397
7423
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -16779,6 +16805,7 @@ exports.IconIosShare = IconIosShare;
16779
16805
  exports.IconKanban = IconKanban;
16780
16806
  exports.IconKey = IconKey;
16781
16807
  exports.IconKeycap = IconKeycap;
16808
+ exports.IconKeycapSingle = IconKeycapSingle;
16782
16809
  exports.IconLaptop = IconLaptop;
16783
16810
  exports.IconLasso = IconLasso;
16784
16811
  exports.IconLayout = IconLayout;