@loomhq/lens 11.2.0 → 11.3.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 SvgBold(props: any): React.JSX.Element;
@@ -33,6 +33,7 @@ export { SvgBellOff } from './bell-off';
33
33
  export { SvgBellRing } from './bell-ring';
34
34
  export { SvgBook } from './book';
35
35
  export { SvgBlur } from './blur';
36
+ export { SvgBold } from './bold';
36
37
  export { SvgBorderColor } from './border-color';
37
38
  export { SvgBulb } from './bulb';
38
39
  export { SvgCalendly } from './calendly';
@@ -108,13 +109,14 @@ export { SvgImport } from './import';
108
109
  export { SvgInfo } from './info';
109
110
  export { SvgInfoFill } from './info-fill';
110
111
  export { SvgInfoOutline } from './info-outline';
112
+ export { SvgItalics } from './italics';
111
113
  export { SvgKeyboardArrowDown } from './keyboard-arrow-down';
112
114
  export { SvgKeyboardArrowLeft } from './keyboard-arrow-left';
113
115
  export { SvgKeyboardArrowRight } from './keyboard-arrow-right';
114
116
  export { SvgKeyboardArrowUp } from './keyboard-arrow-up';
115
117
  export { SvgLaunch } from './launch';
116
118
  export { SvgLightbulbOutline } from './lightbulb-outline';
117
- export { SvgLinearDark } from './linear';
119
+ export { SvgLinearDark } from './linearDark';
118
120
  export { SvgLink } from './link';
119
121
  export { SvgLinkedIn } from './linkedin';
120
122
  export { SvgLinkOff } from './link-off';
@@ -189,6 +191,7 @@ export { SvgTrashForever } from './trash-forever';
189
191
  export { SvgTimelineEditor } from './timeline-editor';
190
192
  export { SvgTune } from './tune';
191
193
  export { SvgUnarchive } from './unarchive';
194
+ export { SvgUnderline } from './underline';
192
195
  export { SvgUndo } from './undo';
193
196
  export { SvgRedo } from './redo';
194
197
  export { SvgUpload } from './upload';
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgItalics(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgUnderline(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgBold(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/bold.tsx
19
+ import * as React from "react";
20
+ function SvgBold(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: "M6 5C6 4.44772 6.44772 4 7 4H13.6667C14.8159 4 15.9181 4.45655 16.7308 5.2692C17.5435 6.08186 18 7.18406 18 8.33333C18 9.44978 17.5692 10.5218 16.7995 11.3271C17.0744 11.4992 17.3312 11.7029 17.5641 11.9359C18.3768 12.7485 18.8333 13.8507 18.8333 15C18.8333 16.1493 18.3768 17.2515 17.5641 18.0641C16.7515 18.8768 15.6493 19.3333 14.5 19.3333H7C6.44772 19.3333 6 18.8856 6 18.3333V5ZM8 6V10.6667H13.6667C14.2855 10.6667 14.879 10.4208 15.3166 9.98325C15.7542 9.54566 16 8.95217 16 8.33333C16 7.7145 15.7542 7.121 15.3166 6.68342C14.879 6.24583 14.2855 6 13.6667 6H8ZM8 12.6667V17.3333H14.5C15.1188 17.3333 15.7123 17.0875 16.1499 16.6499C16.5875 16.2123 16.8333 15.6188 16.8333 15C16.8333 14.3812 16.5875 13.7877 16.1499 13.3501C15.7123 12.9125 15.1188 12.6667 14.5 12.6667H8Z",
27
+ fill: "currentColor"
28
+ }
29
+ ));
30
+ }
31
+ export {
32
+ SvgBold
33
+ };
@@ -33,6 +33,7 @@ export { SvgBellOff } from './bell-off';
33
33
  export { SvgBellRing } from './bell-ring';
34
34
  export { SvgBook } from './book';
35
35
  export { SvgBlur } from './blur';
36
+ export { SvgBold } from './bold';
36
37
  export { SvgBorderColor } from './border-color';
37
38
  export { SvgBulb } from './bulb';
38
39
  export { SvgCalendly } from './calendly';
@@ -108,13 +109,14 @@ export { SvgImport } from './import';
108
109
  export { SvgInfo } from './info';
109
110
  export { SvgInfoFill } from './info-fill';
110
111
  export { SvgInfoOutline } from './info-outline';
112
+ export { SvgItalics } from './italics';
111
113
  export { SvgKeyboardArrowDown } from './keyboard-arrow-down';
112
114
  export { SvgKeyboardArrowLeft } from './keyboard-arrow-left';
113
115
  export { SvgKeyboardArrowRight } from './keyboard-arrow-right';
114
116
  export { SvgKeyboardArrowUp } from './keyboard-arrow-up';
115
117
  export { SvgLaunch } from './launch';
116
118
  export { SvgLightbulbOutline } from './lightbulb-outline';
117
- export { SvgLinearDark } from './linear';
119
+ export { SvgLinearDark } from './linearDark';
118
120
  export { SvgLink } from './link';
119
121
  export { SvgLinkedIn } from './linkedin';
120
122
  export { SvgLinkOff } from './link-off';
@@ -189,6 +191,7 @@ export { SvgTrashForever } from './trash-forever';
189
191
  export { SvgTimelineEditor } from './timeline-editor';
190
192
  export { SvgTune } from './tune';
191
193
  export { SvgUnarchive } from './unarchive';
194
+ export { SvgUnderline } from './underline';
192
195
  export { SvgUndo } from './undo';
193
196
  export { SvgRedo } from './redo';
194
197
  export { SvgUpload } from './upload';