@loomhq/lens 10.22.1 → 10.23.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.
@@ -209,3 +209,4 @@ export { default as SvgSplit } from "./split.js";
209
209
  export { default as SvgRepeat } from "./repeat.js";
210
210
  export { default as PictureInPicture } from "./picture-in-picture.js";
211
211
  export { default as FolderPlus } from "./folder-plus.js";
212
+ export { default as SvgPower } from "./power.js";
@@ -209,3 +209,4 @@ export { default as SvgSplit } from './split.js';
209
209
  export { default as SvgRepeat } from './repeat.js';
210
210
  export { default as PictureInPicture } from './picture-in-picture.js';
211
211
  export { default as FolderPlus } from './folder-plus.js';
212
+ export { default as SvgPower } from './power.js';
@@ -0,0 +1,2 @@
1
+ export default SvgPower;
2
+ declare function SvgPower(props: any): JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ const SvgPower = props => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none" }, props),
3
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.39868 6.49277C7.78927 6.88324 7.78937 7.5164 7.39891 7.90699C6.49008 8.81611 5.87123 9.97431 5.62059 11.2351C5.36996 12.4959 5.49881 13.8028 5.99084 14.9904C6.48287 16.178 7.31599 17.193 8.38487 17.9071C9.45374 18.6213 10.7104 19.0024 11.9959 19.0024C13.2813 19.0024 14.538 18.6213 15.6068 17.9071C16.6757 17.193 17.5088 16.178 18.0009 14.9904C18.4929 13.8028 18.6217 12.4959 18.3711 11.2351C18.1205 9.97431 17.5016 8.81611 16.5928 7.90699C16.2023 7.5164 16.2024 6.88324 16.593 6.49277C16.9836 6.10231 17.6168 6.10242 18.0072 6.49301C19.1957 7.68186 20.005 9.19642 20.3327 10.8452C20.6605 12.4939 20.492 14.2029 19.8486 15.7559C19.2051 17.3089 18.1157 18.6362 16.7179 19.5701C15.3202 20.504 13.6769 21.0024 11.9959 21.0024C10.3148 21.0024 8.67155 20.504 7.27379 19.5701C5.87604 18.6362 4.78657 17.3089 4.14314 15.7559C3.49972 14.2029 3.33123 12.4939 3.65898 10.8452C3.98672 9.19642 4.796 7.68186 5.98446 6.49301C6.37493 6.10242 7.00809 6.10231 7.39868 6.49277Z", fill: "currentColor" }),
4
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 2.5C12.5523 2.5 13 2.94772 13 3.5H12H11C11 2.94772 11.4477 2.5 12 2.5ZM12 3.5H11V11.5C11 12.0523 11.4477 12.5 12 12.5C12.5523 12.5 13 12.0523 13 11.5V3.5H12Z", fill: "currentColor" })));
5
+ export default SvgPower;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomhq/lens",
3
- "version": "10.22.1",
3
+ "version": "10.23.0",
4
4
  "scripts": {
5
5
  "dev": "next",
6
6
  "build:next": "next build",