@loomhq/lens 11.20.0 → 11.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.
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgArrowSlanted(props: any): React.JSX.Element;
@@ -24,6 +24,7 @@ export { SvgArrowLeft } from './arrow-left';
24
24
  export { SvgArrowLeftAlt } from './arrow-left-alt';
25
25
  export { SvgArrowRight } from './arrow-right';
26
26
  export { SvgArrowRightAlt } from './arrow-right-alt';
27
+ export { SvgArrowSlanted } from './arrow-slanted';
27
28
  export { SvgArrowUpward } from './arrow-upward';
28
29
  export { SvgAtlassian } from './atlassian';
29
30
  export { SvgAtMention } from './at-mention';
@@ -227,6 +228,7 @@ export { SvgSlack } from './slack';
227
228
  export { SvgSmile } from './smile';
228
229
  export { SvgSmileAlt } from './smile-alt';
229
230
  export { SvgSmileSelect } from './smile-select';
231
+ export { SvgSquare } from './square';
230
232
  export { SvgSparkle } from './sparkle';
231
233
  export { SvgSpeedFast } from './speed-fast';
232
234
  export { SvgSpeedMedium } from './speed-medium';
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgSquare(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgArrowSlanted(props: any): React.JSX.Element;
@@ -0,0 +1,33 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
4
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
+ var __spreadValues = (a, b) => {
7
+ for (var prop in b || (b = {}))
8
+ if (__hasOwnProp.call(b, prop))
9
+ __defNormalProp(a, prop, b[prop]);
10
+ if (__getOwnPropSymbols)
11
+ for (var prop of __getOwnPropSymbols(b)) {
12
+ if (__propIsEnum.call(b, prop))
13
+ __defNormalProp(a, prop, b[prop]);
14
+ }
15
+ return a;
16
+ };
17
+
18
+ // src/components/icon/available-icons/arrow-slanted.tsx
19
+ import * as React from "react";
20
+ function SvgArrowSlanted(props) {
21
+ return /* @__PURE__ */ React.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React.createElement(
22
+ "path",
23
+ {
24
+ fillRule: "evenodd",
25
+ clipRule: "evenodd",
26
+ d: "M7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6H17C17.5523 6 18 6.44772 18 7V17C18 17.5523 17.5523 18 17 18C16.4477 18 16 17.5523 16 17V9.41421L7.70711 17.7071C7.31658 18.0976 6.68342 18.0976 6.29289 17.7071C5.90237 17.3166 5.90237 16.6834 6.29289 16.2929L14.5858 8H7Z",
27
+ fill: "currentColor"
28
+ }
29
+ ));
30
+ }
31
+ export {
32
+ SvgArrowSlanted
33
+ };
@@ -24,6 +24,7 @@ export { SvgArrowLeft } from './arrow-left';
24
24
  export { SvgArrowLeftAlt } from './arrow-left-alt';
25
25
  export { SvgArrowRight } from './arrow-right';
26
26
  export { SvgArrowRightAlt } from './arrow-right-alt';
27
+ export { SvgArrowSlanted } from './arrow-slanted';
27
28
  export { SvgArrowUpward } from './arrow-upward';
28
29
  export { SvgAtlassian } from './atlassian';
29
30
  export { SvgAtMention } from './at-mention';
@@ -227,6 +228,7 @@ export { SvgSlack } from './slack';
227
228
  export { SvgSmile } from './smile';
228
229
  export { SvgSmileAlt } from './smile-alt';
229
230
  export { SvgSmileSelect } from './smile-select';
231
+ export { SvgSquare } from './square';
230
232
  export { SvgSparkle } from './sparkle';
231
233
  export { SvgSpeedFast } from './speed-fast';
232
234
  export { SvgSpeedMedium } from './speed-medium';