@loomhq/lens 10.40.0 → 10.40.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.
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
- declare const Confetti: (props: any) => JSX.Element;
3
1
  export default Confetti;
2
+ declare function Confetti(props: any): JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- const Confetti = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none" }, props),
2
+ const Confetti = props => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none" }, props),
3
3
  React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 5C3 4.44772 3.44772 4 4 4H6C6.55228 4 7 4.44772 7 5C7 5.55228 6.55228 6 6 6H4C3.44772 6 3 5.55228 3 5Z", fill: "currentColor" }),
4
4
  React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 3C5.55228 3 6 3.44772 6 4V6C6 6.55228 5.55228 7 5 7C4.44772 7 4 6.55228 4 6V4C4 3.44772 4.44772 3 5 3Z", fill: "currentColor" }),
5
5
  React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.7425 3.02985C12.2783 3.1638 12.6041 3.70673 12.4701 4.24253L11.9701 6.24253C11.8362 6.77832 11.2933 7.10408 10.7575 6.97013C10.2217 6.83619 9.8959 6.29325 10.0298 5.75746L10.5298 3.75746C10.6638 3.22166 11.2067 2.8959 11.7425 3.02985Z", fill: "currentColor" }),
@@ -43,6 +43,7 @@ export { default as SvgCode } from "./code.js";
43
43
  export { default as SvgCollapse } from "./collapse.js";
44
44
  export { default as SvgColorLens } from "./color-lens.js";
45
45
  export { default as SvgComment } from "./comment.js";
46
+ export { default as SvgConfetti } from "./confetti.js";
46
47
  export { default as SvgContactSupport } from "./contact-support.js";
47
48
  export { default as SvgCopy } from "./copy.js";
48
49
  export { default as SvgCreate } from "./create.js";
@@ -43,7 +43,7 @@ export { default as SvgCode } from './code.js';
43
43
  export { default as SvgCollapse } from './collapse.js';
44
44
  export { default as SvgColorLens } from './color-lens.js';
45
45
  export { default as SvgComment } from './comment.js';
46
- export { default as SvgConfetti } from './confetti.tsx';
46
+ export { default as SvgConfetti } from './confetti.js';
47
47
  export { default as SvgContactSupport } from './contact-support.js';
48
48
  export { default as SvgCopy } from './copy.js';
49
49
  export { default as SvgCreate } from './create.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomhq/lens",
3
- "version": "10.40.0",
3
+ "version": "10.40.1",
4
4
  "scripts": {
5
5
  "dev": "next",
6
6
  "build:next": "next build",